From 4457aa1ccf2079c5cfca85a8256b7ab2ef92fd6a Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 23 Jun 2014 21:08:44 -0400 Subject: I am going crazy. I would have sworn INSTALL was defined by default --- Makefile | 10 +++++----- 1 file 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: -- cgit v1.1-4-g5e80