- Change Makefiles to use "$(LN) foo ." instead of "ln foo"

svn path=/trunk/boinc/; revision=18003
This commit is contained in:
David Anderson 2009-05-05 09:16:57 +00:00
parent e8a0cb3742
commit 18b5362c1d
3 changed files with 11 additions and 3 deletions

View File

@ -73,11 +73,11 @@ all-local: $(all_local)
$(LIBBOINC_API_STATIC): libboinc_api.la
rm -f $(LIBBOINC_API_STATIC)
ln .libs/$(LIBBOINC_API_STATIC)
$(LN) .libs/$(LIBBOINC_API_STATIC) .
$(LIBBOINC_GRAPHICS2_STATIC): libboinc_graphics2.la
rm -f $(LIBBOINC_GRAPHICS2_STATIC)
ln .libs/$(LIBBOINC_GRAPHICS2_STATIC)
$(LN) .libs/$(LIBBOINC_GRAPHICS2_STATIC) .
endif ## ENABLE_LIBRARIES

View File

@ -4303,3 +4303,11 @@ David 5 May 2009
client/
cpu_sched.cpp
David 5 May 2009
- Change Makefiles to use "$(LN) foo ." instead of "ln foo"
zip/
Makefile.am
api/
Makefile.am

View File

@ -70,6 +70,6 @@ all-local: $(all_local)
$(LIBBOINC_ZIP_STATIC): libboinc_zip.la
rm -f $(LIBBOINC_ZIP_STATIC)
ln .libs/$(LIBBOINC_ZIP_STATIC)
$(LN) .libs/$(LIBBOINC_ZIP_STATIC) .
endif