summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: