summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-06-23 21:08:44 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-06-23 21:08:44 -0400
commit4457aa1ccf2079c5cfca85a8256b7ab2ef92fd6a (patch)
treefe397ff0d842a6d166dc5d428d66c0476f707c47
parent213a1ffca123ab7bf30ba3af57fff3c5e99f54ea (diff)
I am going crazy.
I would have sworn INSTALL was defined by default
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index d4e4bf0..00fb659 100644
--- a/Makefile
+++ b/Makefile
@@ -37,13 +37,13 @@ install: $(targets) $(sysconffile)
sed -e 's|@sbindir@|$(sbindir)|' -e 's|@pkgconffile@|$(pkgconffile)|' < $< > $@
$(DESTDIR)$(sbindir)/%: %
- $(INSTALL) -Dm755 $< $@
+ install -Dm755 $< $@
$(DESTDIR)$(pkglibexecdir)/%: %
- $(INSTALL) -Dm755 $< $@
+ install -Dm755 $< $@
$(DESTDIR)$(systemddir)/%.service: %.service
- $(INSTALL) -Dm644 $< $@
+ install -Dm644 $< $@
# Specific rules
@@ -51,9 +51,9 @@ depends.txt: list-depends depends_static.txt
$< > $@
$(DESTDIR)$(sbindir)/parabolaweb-changepassword: parabolaweb-changepassword
- $(INSTALL) -Dm6755 $< $@
+ install -Dm6755 $< $@
$(DESTDIR)(pkgconffile): parabolaweb.conf
- $(INSTALL) -Dm644 $< $@
+ install -Dm644 $< $@
.DELETE_ON_ERROR: