mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
56e208081c
- Fix up #!/usr/bin/perl. - Remove v6eval/ct/COPYRIGHT from pkg-plist.
25 lines
852 B
Plaintext
25 lines
852 B
Plaintext
--- dd/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
|
|
+++ dd/Makefile 2013-06-17 01:23:46.000000000 +0900
|
|
@@ -1,4 +1,4 @@
|
|
-INSTALL_DIR=$(PREFIX)/ct/dd
|
|
+INSTALL_DIR=$(PREFIX)/v6eval/ct/dd
|
|
|
|
SFILES= *.seq *.pm *.pl *.sh
|
|
DFILES= *.def *.tmpl
|
|
@@ -11,10 +11,10 @@
|
|
all:
|
|
|
|
install:
|
|
- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
|
|
- install -c -o bin -g bin -m 555 $(SFILES) $(INSTALL_DIR)
|
|
- install -c -o bin -g bin -m 444 $(DFILES) $(INSTALL_DIR)
|
|
- install -c -o bin -g bin -m 444 $(ETCFILES) $(INSTALL_DIR)
|
|
- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
|
|
+ install -d -m 555 $(INSTALL_DIR)
|
|
+ ${BSD_INSTALL_SCRIPT} $(SFILES) $(INSTALL_DIR)
|
|
+ ${BSD_INSTALL_DATA} $(DFILES) $(INSTALL_DIR)
|
|
+ ${BSD_INSTALL_DATA} $(ETCFILES) $(INSTALL_DIR)
|
|
+ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
|
|
|
|
.include "./Makefile.test"
|