diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-23 21:08:44 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-23 21:08:44 -0400 |
commit | 4457aa1ccf2079c5cfca85a8256b7ab2ef92fd6a (patch) | |
tree | fe397ff0d842a6d166dc5d428d66c0476f707c47 /Makefile | |
parent | 213a1ffca123ab7bf30ba3af57fff3c5e99f54ea (diff) |
I am going crazy.
I would have sworn INSTALL was defined by default
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: |