diff options
author | Piotr Szubiakowski <pszubiak@eso.org> | 2021-08-13 21:07:31 +0000 |
---|---|---|
committer | Piotr Szubiakowski <pszubiak@eso.org> | 2021-08-13 21:08:58 +0000 |
commit | 9f13cb31e82c0c2872eabe02d25c797fefc42f55 (patch) | |
tree | 01f79d0576f3cc157810967445b400c68530233c /src/libcmd/local.mk | |
parent | d581129ef9ef5d7d65e676f6a7bfe36c82f6ea6e (diff) |
Install pkg-config files in the correct location
Use `$(libdir)` while installing .pc files looks like a more generic
solution. For example, it will work for distributions like RHEL or
Fedora where .pc files are installed in `/usr/lib64/pkgconfig`.
Diffstat (limited to 'src/libcmd/local.mk')
-rw-r--r-- | src/libcmd/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcmd/local.mk b/src/libcmd/local.mk index 431d8ec06..0a684468e 100644 --- a/src/libcmd/local.mk +++ b/src/libcmd/local.mk @@ -12,4 +12,4 @@ libcmd_LDFLAGS = -llowdown -pthread libcmd_LIBS = libstore libutil libexpr libmain libfetchers -$(eval $(call install-file-in, $(d)/nix-cmd.pc, $(prefix)/lib/pkgconfig, 0644)) +$(eval $(call install-file-in, $(d)/nix-cmd.pc, $(libdir)/pkgconfig, 0644)) |