diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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: |