blob: 8783e21017512c856de349cab871f721b3556983 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- include/makefile.src.orig Sat Jun 8 00:56:22 1991
+++ include/makefile.src Sat Dec 28 00:45:11 2002
@@ -35,8 +35,8 @@
@sh -c "if test 'x$(DEST)' != x ; then \
if test 'x$(HDRS)' != x ; then eval \
'for hdr in $?; do \
- echo cp \$$hdr $(DEST)/\$$hdr ; \
- cp \$$hdr $(DEST)/\$$hdr; \
+ echo install \$$hdr $(DEST)/\$$hdr ; \
+ ${BSD_INSTALL_DATA} \$$hdr $(DEST)/\$$hdr; \
done' ; \
else \
true ; \
@@ -44,7 +44,6 @@
else \
true ; \
fi"
- touch install
# Nothing to clean
clean:
|