diff options
author | antoine <antoine@FreeBSD.org> | 2014-09-06 00:55:38 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-09-06 00:55:38 +0800 |
commit | c7664d67ce77c3e8c65bd8e71f570504327857a1 (patch) | |
tree | b2eadee18cf3b18845b7f046bf65b53319a0788a /sysutils | |
parent | f59c2a4b90abb7fbf32b6cabb70ff77edb288310 (diff) | |
download | freebsd-ports-gnome-c7664d67ce77c3e8c65bd8e71f570504327857a1.tar.gz freebsd-ports-gnome-c7664d67ce77c3e8c65bd8e71f570504327857a1.tar.zst freebsd-ports-gnome-c7664d67ce77c3e8c65bd8e71f570504327857a1.zip |
Allow staging as a regular user
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/b43-fwcutter/files/patch-Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/b43-fwcutter/files/patch-Makefile b/sysutils/b43-fwcutter/files/patch-Makefile index 468ef4db0c0c..cbdd62db3a4d 100644 --- a/sysutils/b43-fwcutter/files/patch-Makefile +++ b/sysutils/b43-fwcutter/files/patch-Makefile @@ -17,10 +17,10 @@ - install -o 0 -g 0 -m 755 $(BIN) $(PREFIX)/bin/ - install -d -o 0 -g 0 -m 755 $(PREFIX)/man/man1/ - install -o 0 -g 0 -m 644 $(BIN).1 $(PREFIX)/man/man1/ -+ install -d -o 0 -g 0 -m 755 $(DESTDIR)$(PREFIX)/bin/ -+ install -o 0 -g 0 -m 755 $(BIN) $(DESTDIR)$(PREFIX)/bin/ -+ install -d -o 0 -g 0 -m 755 $(DESTDIR)$(PREFIX)/man/man1/ -+ install -o 0 -g 0 -m 644 $(BIN).1 $(DESTDIR)$(PREFIX)/man/man1/ ++ install -d -m 755 $(DESTDIR)$(PREFIX)/bin/ ++ $(BSD_INSTALL_PROGRAM) $(BIN) $(DESTDIR)$(PREFIX)/bin/ ++ install -d -m 755 $(DESTDIR)$(PREFIX)/man/man1/ ++ $(BSD_INSTALL_MAN) $(BIN).1 $(DESTDIR)$(PREFIX)/man/man1/ clean: -rm -Rf obj dep *.orig *.rej *~ |