mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-15 21:57:02 +02:00
common/wrappers/cross-cc: catch -L/lib in args.
Issue spotted while building geda.
This commit is contained in:
parent
720f2c1c52
commit
811f311dd2
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ while [ $i -lt ${#ARGS[@]} ]; do
|
|||
fi
|
||||
unset incpath
|
||||
elif [ "$libpath" ]; then
|
||||
if [ "$arg" = "/usr/lib" ]; then
|
||||
if [ "$arg" = "/usr/lib" -o "$arg" = "/lib" ]; then
|
||||
echo "[cc-wrapper] ignoring -L $arg"
|
||||
else
|
||||
MYARGS+=("-L${arg}")
|
||||
|
@ -26,7 +26,7 @@ while [ $i -lt ${#ARGS[@]} ]; do
|
|||
incpath=1
|
||||
elif [ "$arg" = "-L" ]; then
|
||||
libpath=1
|
||||
elif [ "$arg" = "-I/usr/include" -o "$arg" = "-L/usr/lib" ]; then
|
||||
elif [ "$arg" = "-I/usr/include" -o "$arg" = "-L/usr/lib" -o "$arg" = "-L/lib" ]; then
|
||||
echo "[cc-wrapper] ignoring $arg"
|
||||
else
|
||||
MYARGS+=("${arg}")
|
||||
|
|
Loading…
Add table
Reference in a new issue