diff options
author | Bruce Korb <korbb@gcc.gnu.org> | 1999-04-26 10:48:59 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 1999-04-26 10:48:59 +0000 |
commit | e2be6f0afffeab1f5125bdff5f96cdd1e1aac4ae (patch) | |
tree | ab2d78d4fd1fc9453cd12f946c5e2c87096750d1 /gcc | |
parent | d1c6a037a2825f8bf7ee237a6d62429d4e1eae1e (diff) | |
download | gcc-e2be6f0afffeab1f5125bdff5f96cdd1e1aac4ae.zip gcc-e2be6f0afffeab1f5125bdff5f96cdd1e1aac4ae.tar.gz gcc-e2be6f0afffeab1f5125bdff5f96cdd1e1aac4ae.tar.bz2 |
Remove unnecessary character quote
From-SVN: r26645
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fixinc/inclhack.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fixinc/inclhack.tpl b/gcc/fixinc/inclhack.tpl index b221ee5..c2b3b51 100644 --- a/gcc/fixinc/inclhack.tpl +++ b/gcc/fixinc/inclhack.tpl @@ -39,7 +39,7 @@ if [ ! -d $LIB ]; then exit 1 } else - ( \cd $LIB && touch DONE && rm DONE ) || { + ( cd $LIB && touch DONE && rm DONE ) || { echo fixincludes: output dir '`'$LIB"' is an invalid directory" exit 1 } |