Commit ebd9026d9f8499abc60d82d949bd37f88fe34a41

Authored by Ingo Molnar
1 parent 5c79d2a517

stackprotector: fix multi-word cross-builds

Stackprotector builds were failing if CROSS_COMPILER was more than
a single world (such as when distcc was used) - because the check
scripts used $1 instead of $*.

Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

scripts/gcc-x86_32-has-stack-protector.sh
1 1 #!/bin/sh
2 2  
3   -echo "int foo(void) { char X[200]; return 3; }" | $1 -S -xc -c -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
  3 +echo "int foo(void) { char X[200]; return 3; }" | $* -S -xc -c -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
4 4 if [ "$?" -eq "0" ] ; then
5 5 echo y
6 6 else
scripts/gcc-x86_64-has-stack-protector.sh
1 1 #!/bin/sh
2 2  
3   -echo "int foo(void) { char X[200]; return 3; }" | $1 -S -xc -c -O0 -mcmodel=kernel -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
  3 +echo "int foo(void) { char X[200]; return 3; }" | $* -S -xc -c -O0 -mcmodel=kernel -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
4 4 if [ "$?" -eq "0" ] ; then
5 5 echo y
6 6 else