Module: Mesa Branch: master Commit: beef101eb325233ddaae3fc3bab28495b86bfada URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=beef101eb325233ddaae3fc3bab28495b86bfada
Author: Wayne E. Robertz <[email protected]> Date: Thu Nov 10 15:21:14 2011 -0700 mklib: fix static lib building by filtering out -L, -l options Signed-off-by: Brian Paul <[email protected]> --- bin/mklib | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/mklib b/bin/mklib index fd87aad..70bd1a2 100755 --- a/bin/mklib +++ b/bin/mklib @@ -260,7 +260,7 @@ if [ $STATIC = 1 ]; then NEWOBJECTS="" for OBJ in $OBJECTS ; do case $OBJ in - -Wl,*) + -Wl,*|-L*|-l*) echo "mklib: warning: ignoring $OBJ for static library" ;; *) _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
