| commit | 1c04be573e49e26220cf467cc7d26564e12ff260 | [log] [tgz] |
|---|---|---|
| author | Eric Anholt <anholt@FreeBSD.org> | Sat Oct 22 01:41:40 2005 +0000 |
| committer | Eric Anholt <anholt@FreeBSD.org> | Sat Oct 22 01:41:40 2005 +0000 |
| tree | 978617049124a8958defc17ff7076ed46ec99288 | |
| parent | 52f686c48080cec9a26aa23d16bc14bd3d302d70 [diff] |
Fix FreeBSD build by building libGL in the order desired, and doing a fix to my mklib changes.
diff --git a/bin/mklib b/bin/mklib index ce405d1..5b04234 100755 --- a/bin/mklib +++ b/bin/mklib
@@ -338,7 +338,8 @@ echo "mklib: Making FreeBSD shared library: " ${SHLIB} rm -f ${SHLIB} ${LINK} ${OPTS} -o ${SHLIB} ${OBJECTS} ${DEPS} - FINAL_LIBS=${SHLIB} + ln -sf ${SHLIB} "lib${LIBNAME}.so" + FINAL_LIBS="${SHLIB} lib${LIBNAME}.so" fi ;;