From c12b5f415798001a303145de0907a24968710a19 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 22 Sep 2005 03:04:19 +0000 Subject: dont screw around with lib/ if it doesnt exist --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e7aafc3ab..53d1c63aa 100644 --- a/Makefile +++ b/Makefile @@ -249,10 +249,12 @@ ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y) endif # # If we build shared libraries then the static libs are PIC... # # Make _pic.a symlinks to make mklibs.py and similar tools happy. + if [ -d lib ] ; then \ for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \ $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \ | sed -e 's/\.a$$/_pic.a/'`; \ - done; + done ; \ + fi # Ugh!!! Remember that libdl.a and libdl_pic.a are different. Since # libdl is pretty small, and not likely to benefit from mklibs.py and # similar, lets just remove libdl_pic.a and avoid the issue -- cgit v1.2.3