gcc-wrapper: Style fix

This commit is contained in:
Eelco Dolstra 2014-10-10 15:23:16 +02:00
parent 02122ccfd0
commit 0d67d13527
2 changed files with 5 additions and 5 deletions

View File

@ -14,11 +14,11 @@ if [ -e @out@/nix-support/gnat-cflags ]; then
fi
if [ -e @out@/nix-support/libc-ldflags ]; then
export NIX_LDFLAGS="$NIX_LDFLAGS $(cat @out@/nix-support/libc-ldflags)"
export NIX_LDFLAGS+=" $(cat @out@/nix-support/libc-ldflags)"
fi
if [ -e @out@/nix-support/gcc-ldflags ]; then
export NIX_LDFLAGS="$NIX_LDFLAGS $(cat @out@/nix-support/gcc-ldflags)"
export NIX_LDFLAGS+=" $(cat @out@/nix-support/gcc-ldflags)"
fi
if [ -e @out@/nix-support/libc-ldflags-before ]; then

View File

@ -2,15 +2,15 @@ export NIX_GCC=@out@
addCVars () {
if [ -d $1/include ]; then
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem $1/include"
export NIX_CFLAGS_COMPILE+=" -isystem $1/include"
fi
if [ -d $1/lib64 -a ! -L $1/lib64 ]; then
export NIX_LDFLAGS="$NIX_LDFLAGS -L$1/lib64"
export NIX_LDFLAGS+=" -L$1/lib64"
fi
if [ -d $1/lib ]; then
export NIX_LDFLAGS="$NIX_LDFLAGS -L$1/lib"
export NIX_LDFLAGS+=" -L$1/lib"
fi
}