diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2013-06-16 16:11:08 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2013-06-16 16:11:08 +0000 |
commit | 470d13c7ed1bb6b01c1600182343aa64a3abc050 (patch) | |
tree | addde23980c745539537840f5e7f5e05f0324f6c /net/v6eval/files/patch-bin-remotes-manual-Makefile | |
parent | - add prototypes and fix a ton of warnings (diff) |
- Add p5-YAML as runtime dependency.
- Add sample test scripts.
- Fix up #!/usr/bin/perl.
- Fix ownership and permissions of the installed files.
Notes
Notes:
svn path=/head/; revision=321056
Diffstat (limited to 'net/v6eval/files/patch-bin-remotes-manual-Makefile')
-rw-r--r-- | net/v6eval/files/patch-bin-remotes-manual-Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/v6eval/files/patch-bin-remotes-manual-Makefile b/net/v6eval/files/patch-bin-remotes-manual-Makefile new file mode 100644 index 000000000000..1454b0a858ce --- /dev/null +++ b/net/v6eval/files/patch-bin-remotes-manual-Makefile @@ -0,0 +1,23 @@ +--- bin/remotes/manual/Makefile.orig 2009-11-25 16:50:24.000000000 +0900 ++++ bin/remotes/manual/Makefile 2013-06-17 00:39:02.000000000 +0900 +@@ -41,8 +41,8 @@ + # THE POSSIBILITY OF SUCH DAMAGE. + # + +-PREFIX=/usr/local/v6eval +-RMTDIR=$(PREFIX)/bin/manual ++PREFIX?=/usr/local ++RMTDIR=$(PREFIX)/v6eval/bin/manual + REMOTES= cleardefr.rmt \ + clearmtu.rmt \ + clearnc.rmt \ +@@ -106,6 +106,6 @@ + clean: + + install: +- install -d -o bin -g bin -m 755 $(PREFIX)/bin +- install -d -o bin -g bin -m 755 $(RMTDIR) +- install -c -o bin -g bin -m 555 $(REMOTES) $(RMTDIR) ++ install -d -m 555 $(PREFIX)/v6eval/bin ++ install -d -m 555 $(RMTDIR) ++ ${BSD_INSTALL_SCRIPT} $(REMOTES) $(RMTDIR) |