typo fix
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 20 Oct 2015 16:15:01 +0000 (18:15 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 20 Oct 2015 16:15:01 +0000 (18:15 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
scripts/trylink

index 9132b3f7608985d47c152883453ffab498b47a8f..6e1187ed091e54c90cf274f5ca92c8141d240345 100755 (executable)
@@ -51,7 +51,7 @@ check_cc() {
     echo "int main(int argc,char**argv){return argv?argc:0;}" >"$tempname".c
     # Can use "-o /dev/null", but older gcc tend to *unlink it* on failure! :(
     # Was using "-xc /dev/null", but we need a valid C program.
-    # "eval" may be needed is CFLAGS can contain
+    # "eval" may be needed if CFLAGS can contain
     # '... -D"BB_VER=KBUILD_STR(1.N.M)" ...'
     # and we need shell to process quotes!
     $CC $CFLAGS $1 "$tempname".c -o "$tempname" >/dev/null 2>&1