geographiclib: fix multi-output CMake import prefix

The dev/out output split moved lib/cmake into $dev while the shared library and executables stayed in $out. The exported targets file uses relative ${_IMPORT_PREFIX} paths, so find_package(GeographicLib) resolved libraries and binaries under $dev and failed to link.

Drop the dev output so lib/cmake ships alongside the library in $out and ${_IMPORT_PREFIX} resolves correctly; keep the doc output split off.

Assisted-by: Claude Code Opus 4.8
This commit is contained in:
Jean-François Roche
2026-07-15 17:44:58 +02:00
parent 2e657a0bd8
commit 683e8fa08b
@@ -18,7 +18,6 @@ stdenv.mkDerivation (finalAttrs: {
};
outputs = [
"dev"
"doc"
"out"
];