about summary refs log tree commit diff
path: root/programs.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-07T14·06+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-07T15·21+0100
commita210c995cdd9279ed4137ec5d2e4cc928cb36097 (patch)
treedc62d7fd0dad896bcbc53f41a892a74c37c3be11 /programs.mk
parent97f8e9bc76b08ac6d63c6419490f8fcc9670a58b (diff)
Support DESTDIR
Diffstat (limited to 'programs.mk')
-rw-r--r--programs.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/programs.mk b/programs.mk
index 218fd37a3fa4..ab04ff93e910 100644
--- a/programs.mk
+++ b/programs.mk
@@ -22,7 +22,7 @@ define build-program
   _libs := $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_PATH))
   $(1)_PATH := $$(_d)/$(1)
 
-  $$(eval $$(call create-dir,$$(_d)))
+  $$(eval $$(call create-dir, $$(_d)))
 
   $$($(1)_PATH): $$($(1)_OBJS) $$(_libs) | $$(_d)
 	$$(trace-ld) $(CXX) -o $$@ $(GLOBAL_LDFLAGS) $$($(1)_OBJS) $$($(1)_LDFLAGS) $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_LDFLAGS_USE))
@@ -30,20 +30,20 @@ define build-program
   $(1)_INSTALL_DIR ?= $$(bindir)
   $(1)_INSTALL_PATH := $$($(1)_INSTALL_DIR)/$(1)
 
-  $$(eval $$(call create-dir,$$($(1)_INSTALL_DIR)))
+  $$(eval $$(call create-dir, $$($(1)_INSTALL_DIR)))
 
-  install: $$($(1)_INSTALL_PATH)
+  install: $(DESTDIR)$$($(1)_INSTALL_PATH)
 
   ifeq ($(BUILD_SHARED_LIBS), 1)
 
     _libs_final := $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_INSTALL_PATH))
 
-    $$($(1)_INSTALL_PATH): $$($(1)_OBJS) $$(_libs_final) | $$($(1)_INSTALL_DIR)
+    $(DESTDIR)$$($(1)_INSTALL_PATH): $$($(1)_OBJS) $$(_libs_final) | $(DESTDIR)$$($(1)_INSTALL_DIR)
 	$$(trace-ld) $(CXX) -o $$@ $(GLOBAL_LDFLAGS) $$($(1)_OBJS) $$($(1)_LDFLAGS) $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_LDFLAGS_USE_INSTALLED))
 
   else
 
-    $$($(1)_INSTALL_PATH): $$($(1)_PATH) | $$($(1)_INSTALL_DIR)
+    $(DESTDIR)$$($(1)_INSTALL_PATH): $$($(1)_PATH) | $(DESTDIR)$$($(1)_INSTALL_DIR)
 	install -t $$($(1)_INSTALL_DIR) $$<
 
   endif