diff options
author | Marco Gerards <marco@gnu.org> | 2003-08-20 20:40:06 +0000 |
---|---|---|
committer | Marco Gerards <marco@gnu.org> | 2003-08-20 20:40:06 +0000 |
commit | cb62fb204d22daea8ec0367c7590f32116276aa7 (patch) | |
tree | 4d0b36da7cee74c2289d3a8f235fada698a25f48 | |
parent | 562f681d63d5b2b4a06db8b2378cdef45c7594e4 (diff) |
2003-08-03 Marco Gerards <metgerards@student.han.nl>
* Makefile (install): Do not install from $(srcdir).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -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>. @@ -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)) |