summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Gerards <marco@gnu.org>2003-08-20 20:40:06 +0000
committerMarco Gerards <marco@gnu.org>2003-08-20 20:40:06 +0000
commitcb62fb204d22daea8ec0367c7590f32116276aa7 (patch)
tree4d0b36da7cee74c2289d3a8f235fada698a25f48
parent562f681d63d5b2b4a06db8b2378cdef45c7594e4 (diff)
2003-08-03 Marco Gerards <metgerards@student.han.nl>
* Makefile (install): Do not install from $(srcdir).
-rw-r--r--ChangeLog4
-rw-r--r--Makefile4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8304e1d..f2b8e5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-03 Marco Gerards <metgerards@student.han.nl>
+
+ * Makefile (install): Do not install from $(srcdir).
+
2002-11-26 Neal H. Walfield <neal@cs.uml.edu>
* pthread/pt-create.c [HAVE_USELOCAL]: Include <locale.h>.
diff --git a/Makefile b/Makefile
index 9f52065..504c82e 100644
--- a/Makefile
+++ b/Makefile
@@ -184,11 +184,11 @@ install-headers: $(addprefix $(includedir)/, $(sysdeps_headers))
# ../Makeconf at the moment.
$(libdir)/libpthread2.a: $(libdir)/libpthread.a
mv $< $@
- $(INSTALL_DATA) $(srcdir)/libpthread.a $<
+ $(INSTALL_DATA) libpthread.a $<
$(libdir)/libpthread2_pic.a: $(libdir)/libpthread_pic.a
mv $< $@
- $(INSTALL_DATA) $(srcdir)/libpthread_pic.a $<
+ $(INSTALL_DATA) libpthread_pic.a $<
.PHONY: $(addprefix $(includedir)/, $(sysdeps_headers))