diff options
author | antoine <antoine@FreeBSD.org> | 2014-09-08 05:17:11 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-09-08 05:17:11 +0800 |
commit | b56a1f56df8c61d3ce2755e030a29c7e72eed397 (patch) | |
tree | 782cee0af6b05772e1098881a00a3fb08193997b | |
parent | abae8f260e44f422916241588813e2cffb886735 (diff) | |
download | freebsd-ports-gnome-b56a1f56df8c61d3ce2755e030a29c7e72eed397.tar.gz freebsd-ports-gnome-b56a1f56df8c61d3ce2755e030a29c7e72eed397.tar.zst freebsd-ports-gnome-b56a1f56df8c61d3ce2755e030a29c7e72eed397.zip |
Allow staging as a regular user
-rw-r--r-- | sysutils/no-login/files/patch-Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/no-login/files/patch-Makefile b/sysutils/no-login/files/patch-Makefile index e68cdb62bc7f..007efe0754f0 100644 --- a/sysutils/no-login/files/patch-Makefile +++ b/sysutils/no-login/files/patch-Makefile @@ -6,7 +6,7 @@ install: - install -c -o root -g bin -m 755 nologin $(PREFIX)/bin - install -c -o root -g wheel -m 444 nologin.8 $(PREFIX)/man/man8 -+ install -c -o root -g bin -m 755 nologin $(DESTDIR)$(PREFIX)/bin -+ install -c -o root -g wheel -m 444 nologin.8 $(DESTDIR)$(PREFIX)/man/man8 ++ $(BSD_INSTALL_PROGRAM) nologin $(DESTDIR)$(PREFIX)/bin ++ $(BSD_INSTALL_MAN) nologin.8 $(DESTDIR)$(PREFIX)/man/man8 clean: -rm -f *.o *~ nologin |