mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-08 12:01:56 +00:00
![Hiroki Sato](/assets/img/avatar_default.png)
- Add sample test scripts. - Fix up #!/usr/bin/perl. - Fix ownership and permissions of the installed files.
24 lines
677 B
Plaintext
24 lines
677 B
Plaintext
--- 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)
|