52b3ef33690dd0c1891977bba00f0788824ce0c5
angie
  Wed Oct 3 13:57:04 2012 -0700
Use "L += ..." instead of "L = ..." to avoid losing inc/common.mk $USE_* tweaks.
diff --git src/utils/bbTest/makefile src/utils/bbTest/makefile
index c031019..c6fa9ae 100644
--- src/utils/bbTest/makefile
+++ src/utils/bbTest/makefile
@@ -1,18 +1,18 @@
 include ../../inc/common.mk
 
-L = -lm
+L += -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 STRIP=true
 COPT=
 CFLAGS=-ggdb
 HG_WARN=
 
 A = bbTest
 O = bbTest.o
 
 bbTest: ${O} ${MYLIBS}
 	${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 compile:: ${O}