aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLoïc Minier <lool@dooz.org>2010-01-30 14:43:07 +0100
committerLoïc Minier <lool@dooz.org>2010-01-30 14:43:07 +0100
commit2fb51229570ecd48da7a94aac9580dfe5c806193 (patch)
treef9a99bfca77bc363f08f29ce3196fbcf10bdcfd2 /Makefile
parentf1063ae3427be70ebd7c017eee50b71483324431 (diff)
downloadpbuilder-2fb51229570ecd48da7a94aac9580dfe5c806193.tar
pbuilder-2fb51229570ecd48da7a94aac9580dfe5c806193.tar.gz
Allow overriding install command
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9b963b9..fca6304 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
-INSTALL_DIRECTORY=install -d -m 0755
-INSTALL_FILE=install -m 0644
-INSTALL_EXECUTABLE=install -m 0755
-
+INSTALL = install
+INSTALL_DIRECTORY = $(INSTALL) -d -m 0755
+INSTALL_FILE = $(INSTALL) -m 0644
+INSTALL_EXECUTABLE = $(INSTALL) -m 0755
#
# To add new script, add it to here, so that it will be tested. And then add a rule to install: target.