mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 01:20:31 -04:00
- Add sample test scripts. - Fix up #!/usr/bin/perl. - Fix ownership and permissions of the installed files.
19 lines
504 B
Text
19 lines
504 B
Text
--- bin/remotes/Makefile.orig 2013-06-17 00:08:29.000000000 +0900
|
|
+++ bin/remotes/Makefile 2013-06-17 00:17:24.000000000 +0900
|
|
@@ -46,13 +46,13 @@
|
|
SUBDIR= unknown \
|
|
manual
|
|
|
|
-PREFIX=/usr/local/v6eval
|
|
+PREFIX?=/usr/local
|
|
DOCFILES=00README
|
|
|
|
depend:
|
|
|
|
afterinstall:
|
|
- install -d -o bin -g bin -m 755 $(PREFIX)/bin
|
|
- install -c -o bin -g bin -m 444 $(DOCFILES) $(PREFIX)/bin/
|
|
+ install -d -m 555 $(PREFIX)/v6eval/bin
|
|
+ ${BSD_INSTALL_DATA} $(DOCFILES) $(PREFIX)/v6eval/bin/
|
|
|
|
.include <bsd.subdir.mk>
|