summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-09-27 13:28:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-09-27 13:28:22 +0000
commitb68e01c5d9122271c2c54922572ecc559dc13337 (patch)
tree83a3977750a27200129bf77132d4c13bacad03f2 /cpukit
parent2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-b68e01c5d9122271c2c54922572ecc559dc13337.tar.bz2
2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* machine/Makefile.am: Use 'PREINSTALL_FILES ='. * net/Makefile.am: Use 'PREINSTALL_FILES ='. * netinet/Makefile.am: Use 'PREINSTALL_FILES ='. * vm/Makefile.am: Use 'PREINSTALL_FILES ='. * pppd/Makefile.am: Use 'PREINSTALL_FILES ='. * sys/Makefile.am: Use 'PREINSTALL_FILES ='. * rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='. * arpa/Makefile.am: Use 'PREINSTALL_FILES ='. * nfs/Makefile.am: Use 'PREINSTALL_FILES ='. * rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='. * rtems/Makefile.am: Use 'PREINSTALL_FILES ='. * rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
Diffstat (limited to '')
-rw-r--r--cpukit/ftpd/Makefile.am2
-rw-r--r--cpukit/httpd/Makefile.am2
-rw-r--r--cpukit/libnetworking/ChangeLog15
-rw-r--r--cpukit/libnetworking/arpa/Makefile.am2
-rw-r--r--cpukit/libnetworking/machine/Makefile.am2
-rw-r--r--cpukit/libnetworking/net/Makefile.am2
-rw-r--r--cpukit/libnetworking/netinet/Makefile.am2
-rw-r--r--cpukit/libnetworking/nfs/Makefile.am2
-rw-r--r--cpukit/libnetworking/rtems/Makefile.am2
-rw-r--r--cpukit/libnetworking/sys/Makefile.am2
-rw-r--r--cpukit/libnetworking/vm/Makefile.am2
-rw-r--r--cpukit/pppd/Makefile.am2
-rw-r--r--cpukit/telnetd/Makefile.am2
13 files changed, 27 insertions, 12 deletions
diff --git a/cpukit/ftpd/Makefile.am b/cpukit/ftpd/Makefile.am
index 17ad1c5fcb..5c606c7835 100644
--- a/cpukit/ftpd/Makefile.am
+++ b/cpukit/ftpd/Makefile.am
@@ -35,7 +35,7 @@ include_HEADERS = ftpd.h
include_rtems_HEADERS =
-PREINSTALL_FILES += $(PROJECT_INCLUDE) \
+PREINSTALL_FILES = $(PROJECT_INCLUDE) \
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
diff --git a/cpukit/httpd/Makefile.am b/cpukit/httpd/Makefile.am
index 1cbb77b00d..c942a5c085 100644
--- a/cpukit/httpd/Makefile.am
+++ b/cpukit/httpd/Makefile.am
@@ -44,7 +44,7 @@ $(PROJECT_INCLUDE)/goahead/%.h: %.h
$(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h
$(INSTALL_DATA) $< $@
-PREINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems_webserver.h \
+PREINSTALL_FILES = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems_webserver.h \
$(PROJECT_INCLUDE)/goahead $(H_FILES:%.h=$(PROJECT_INCLUDE)/goahead/%.h)
if HAS_POSIX
diff --git a/cpukit/libnetworking/ChangeLog b/cpukit/libnetworking/ChangeLog
index 42493aec5a..1ae9e0c9c6 100644
--- a/cpukit/libnetworking/ChangeLog
+++ b/cpukit/libnetworking/ChangeLog
@@ -1,3 +1,18 @@
+2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * machine/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * net/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * vm/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * sys/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
+ * rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
+
2001-09-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use PREINSTALL_FILES = to make automake-1.5 happy.
diff --git a/cpukit/libnetworking/arpa/Makefile.am b/cpukit/libnetworking/arpa/Makefile.am
index 44ff88f334..661b5a5102 100644
--- a/cpukit/libnetworking/arpa/Makefile.am
+++ b/cpukit/libnetworking/arpa/Makefile.am
@@ -10,7 +10,7 @@ include_arpadir = $(includedir)/arpa
include_arpa_HEADERS = ftp.h inet.h nameser.h nameser_compat.h telnet.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/arpa \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/arpa \
$(include_arpa_HEADERS:%=$(PROJECT_INCLUDE)/arpa/%)
$(PROJECT_INCLUDE)/arpa:
diff --git a/cpukit/libnetworking/machine/Makefile.am b/cpukit/libnetworking/machine/Makefile.am
index 8dda8e015f..a9f5e98f14 100644
--- a/cpukit/libnetworking/machine/Makefile.am
+++ b/cpukit/libnetworking/machine/Makefile.am
@@ -9,7 +9,7 @@ include_machinedir = $(includedir)/machine
include_machine_HEADERS = conf.h cpu.h cpufunc.h endian.h in_cksum.h limits.h param.h \
types.h vmparam.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/machine \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/machine \
$(include_machine_HEADERS:%=$(PROJECT_INCLUDE)/machine/%)
$(PROJECT_INCLUDE)/machine:
diff --git a/cpukit/libnetworking/net/Makefile.am b/cpukit/libnetworking/net/Makefile.am
index 964e52cac6..f96001a4c4 100644
--- a/cpukit/libnetworking/net/Makefile.am
+++ b/cpukit/libnetworking/net/Makefile.am
@@ -40,7 +40,7 @@ include_net_HEADERS = bpf.h ethernet.h if.h if_arp.h if_dl.h if_llc.h if_ppp.h \
if_types.h netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h \
if_pppvar.h pppcompress.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/net \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/net \
$(include_net_HEADERS:%=$(PROJECT_INCLUDE)/net/%)
$(PROJECT_INCLUDE)/net:
diff --git a/cpukit/libnetworking/netinet/Makefile.am b/cpukit/libnetworking/netinet/Makefile.am
index 435aa77ff3..01da99ba01 100644
--- a/cpukit/libnetworking/netinet/Makefile.am
+++ b/cpukit/libnetworking/netinet/Makefile.am
@@ -45,7 +45,7 @@ include_netinet_HEADERS = icmp_var.h if_ether.h igmp.h igmp_var.h in.h in_pcb.h
in_var.h ip.h ip_fw.h ip_icmp.h ip_mroute.h ip_var.h tcp.h tcp_debug.h \
tcp_fsm.h tcp_seq.h tcp_timer.h tcp_var.h tcpip.h udp.h udp_var.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/netinet \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/netinet \
$(include_netinet_HEADERS:%=$(PROJECT_INCLUDE)/netinet/%)
$(PROJECT_INCLUDE)/netinet:
diff --git a/cpukit/libnetworking/nfs/Makefile.am b/cpukit/libnetworking/nfs/Makefile.am
index e4e6ef9f05..b9bd556790 100644
--- a/cpukit/libnetworking/nfs/Makefile.am
+++ b/cpukit/libnetworking/nfs/Makefile.am
@@ -36,7 +36,7 @@ EXTRA_DIST = bootp_subr.c
include_nfs_HEADERS = krpc.h nfs.h nfsdiskless.h nfsproto.h rpcv2.h xdr_subs.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/nfs \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/nfs \
$(include_nfs_HEADERS:%=$(PROJECT_INCLUDE)/nfs/%)
$(PROJECT_INCLUDE)/nfs:
diff --git a/cpukit/libnetworking/rtems/Makefile.am b/cpukit/libnetworking/rtems/Makefile.am
index 47846d1c4f..06e57fa081 100644
--- a/cpukit/libnetworking/rtems/Makefile.am
+++ b/cpukit/libnetworking/rtems/Makefile.am
@@ -21,7 +21,7 @@ OBJS = $(C_O_FILES)
include_rtems_HEADERS = rtems_bsdnet.h rtems_bsdnet_internal.h tftp.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
$(PROJECT_INCLUDE)/rtems:
diff --git a/cpukit/libnetworking/sys/Makefile.am b/cpukit/libnetworking/sys/Makefile.am
index abedf78d9c..5074f38785 100644
--- a/cpukit/libnetworking/sys/Makefile.am
+++ b/cpukit/libnetworking/sys/Makefile.am
@@ -14,7 +14,7 @@ include_sys_HEADERS = buf.h callout.h conf.h domain.h filio.h ioctl.h kernel.h l
sockio.h sysctl.h syslimits.h syslog.h systm.h ttydefaults.h ucred.h \
uio.h un.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/sys \
$(include_sys_HEADERS:%=$(PROJECT_INCLUDE)/sys/%)
$(PROJECT_INCLUDE)/sys:
diff --git a/cpukit/libnetworking/vm/Makefile.am b/cpukit/libnetworking/vm/Makefile.am
index de5d0c9661..cae1f9d64c 100644
--- a/cpukit/libnetworking/vm/Makefile.am
+++ b/cpukit/libnetworking/vm/Makefile.am
@@ -10,7 +10,7 @@ include_vmdir = $(includedir)/vm
include_vm_HEADERS = vm.h vm_extern.h vm_kern.h vm_param.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/vm \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/vm \
$(include_vm_HEADERS:%=$(PROJECT_INCLUDE)/vm/%)
$(PROJECT_INCLUDE)/vm:
diff --git a/cpukit/pppd/Makefile.am b/cpukit/pppd/Makefile.am
index 9aab295eb3..b9521d7dbe 100644
--- a/cpukit/pppd/Makefile.am
+++ b/cpukit/pppd/Makefile.am
@@ -39,7 +39,7 @@ sys-rtems.c upap.c upap.h utils.c
include_HEADERS = rtemspppd.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
+PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
$(PROJECT_INCLUDE)/%.h: %.h
$(INSTALL_DATA) $< $@
diff --git a/cpukit/telnetd/Makefile.am b/cpukit/telnetd/Makefile.am
index a5d0480722..f3c3ac0020 100644
--- a/cpukit/telnetd/Makefile.am
+++ b/cpukit/telnetd/Makefile.am
@@ -32,7 +32,7 @@ $(PROJECT_INCLUDE)/rtems/%.h: %.h
$(LIB): $(OBJS)
$(make-library)
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
+PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)