Author: vedge
Date: 2010-08-08 02:10:16 -0300 (Sun, 08 Aug 2010)
New Revision: 870

Modified:
   trunk/ChangeLogs/Release-2.8.txt
   trunk/build.lib.mk
Log:
Make ${SHOBJS} depend on ${LIBTOOL_COOKIE} in build.lib.mk.
Fixes concurrent make problems; thanks Bill Randle!


Modified: trunk/ChangeLogs/Release-2.8.txt
===================================================================
--- trunk/ChangeLogs/Release-2.8.txt    2010-07-28 09:24:49 UTC (rev 869)
+++ trunk/ChangeLogs/Release-2.8.txt    2010-08-08 05:10:16 UTC (rev 870)
@@ -16,4 +16,6 @@
 - Added standard directives CHECK_HEADER(), CHECK_HEADER_OPTS(),
   CHECK_FUNC() and CHECK_FUNC_OPTS(); thanks rhaamo!
 - Added HDEFINE_UNQUOTED() variant; thanks rhaamo!
+- Make ${SHOBJS} depend on ${LIBTOOL_COOKIE} in build.lib.mk. Fixes
+  concurrent make problems; thanks Bill Randle!
 

Modified: trunk/build.lib.mk
===================================================================
--- trunk/build.lib.mk  2010-07-28 09:24:49 UTC (rev 869)
+++ trunk/build.lib.mk  2010-08-08 05:10:16 UTC (rev 870)
@@ -216,7 +216,9 @@
        fi
 
 # Build a Libtool version of the library.
-lib${LIB}.la: ${LIBTOOL_COOKIE} _lib_shobjs ${SHOBJS}
+_lib_shobjs ${SHOBJS}: ${LIBTOOL_COOKIE}
+
+lib${LIB}.la: _lib_shobjs ${SHOBJS}
        @if [ "${LIB}" != "" -a "${USE_LIBTOOL}" = "Yes" \
              -a "${SRCS}" != "none" ]; then \
            if [ "${SHOBJS}" = "none" ]; then \

_______________________________________________
BSDBuild-Commits mailing list
BSDBuild-Commits@hypertriton.com
http://mail231.csoft.net/mailman/listinfo/bsdbuild-commits

Reply via email to