diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-12-08 05:30:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-12-08 05:30:00 +0000 |
commit | c5385c9011532b573b5c2c7292ff3bb557ac4e87 (patch) | |
tree | ec1f3ce0975ff7b0a20bff57f7a4b28db25dccf2 /package | |
parent | 3b261a29d552ebd1979982bffa05129e563eb773 (diff) | |
download | buildroot-novena-c5385c9011532b573b5c2c7292ff3bb557ac4e87.tar.gz buildroot-novena-c5385c9011532b573b5c2c7292ff3bb557ac4e87.zip |
sigh
Diffstat (limited to 'package')
-rw-r--r-- | package/ltp-testsuite/ltp-testsuite-sh-is-not-C-code.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/ltp-testsuite/ltp-testsuite-sh-is-not-C-code.patch b/package/ltp-testsuite/ltp-testsuite-sh-is-not-C-code.patch new file mode 100644 index 000000000..a6f98ac13 --- /dev/null +++ b/package/ltp-testsuite/ltp-testsuite-sh-is-not-C-code.patch @@ -0,0 +1,11 @@ +--- ltp-full-20061121/IDcheck.sh.orig 2006-12-07 22:31:29.000000000 -0700 ++++ ltp-full-20061121/IDcheck.sh 2006-12-07 22:32:58.000000000 -0700 +@@ -85,7 +85,7 @@ + fi + + whoami | grep root > /dev/null +-if [ $? == "0" ]; then ++if [ $? = "0" ]; then + I_AM_ROOT=1 + fi + |