diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-23T23·56+0000 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-23T23·56+0000 |
commit | c7547cff1951aec5e36580a8497dd13020dfc8d3 (patch) | |
tree | ee876d61fbaa028c1a5c456ba69569e96ce89173 | |
parent | 2bd0fcc9663211cc480f61dc9e05f43ac9ecca69 (diff) |
Install into $(libdir) instead of $(pkglibdir)
We don't need $(pkglibdir) anymore, since the libraries themselves have a "nix" prefix now.
-rw-r--r-- | Makefile.lib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.lib b/Makefile.lib index 38370c2fec1f..b9114a07c0b1 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -73,7 +73,7 @@ define LIBS_template = $(1)_LDFLAGS_USE += -L$$(_d) -Wl,-rpath,$$(abspath $$(_d)) -l$$(patsubst lib%,%,$$(strip $$($(1)_NAME))) - $(1)_INSTALL_DIR := $$(pkglibdir) + $(1)_INSTALL_DIR := $$(libdir) $(1)_INSTALL_PATH := $$($(1)_INSTALL_DIR)/$$($(1)_NAME).so @@ -94,7 +94,7 @@ define LIBS_template = $(1)_LDFLAGS_USE += $$($(1)_PATH) $$($(1)_LDFLAGS) - $(1)_INSTALL_PATH := $$(pkglibdir)/$$($(1)_NAME).a + $(1)_INSTALL_PATH := $$(libdir)/$$($(1)_NAME).a endif |