diff options
author | Brad King <brad.king@kitware.com> | 2007-05-18 13:17:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-18 13:17:36 (GMT) |
commit | 07fe611fc6607dced063858aa850cdb1ef59130c (patch) | |
tree | 028285cf15d5da6189a51c220021c864c43c7ecf /Source | |
parent | d9bbc3f45f6cc66865957a492d0cdd560d8f765c (diff) | |
download | CMake-07fe611fc6607dced063858aa850cdb1ef59130c.zip CMake-07fe611fc6607dced063858aa850cdb1ef59130c.tar.gz CMake-07fe611fc6607dced063858aa850cdb1ef59130c.tar.bz2 |
BUG: Added carrot (^) to characters that need quoting. The solaris shell needs it.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/kwsys/System.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c index 289be3e..ec328f8 100644 --- a/Source/kwsys/System.c +++ b/Source/kwsys/System.c @@ -71,7 +71,7 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c) return ((c == '\'') || (c == '`') || (c == ';') || (c == '#') || (c == '&') || (c == '$') || (c == '(') || (c == ')') || (c == '~') || (c == '<') || (c == '>') || (c == '|') || - (c == '*') || (c == '\\')); + (c == '*') || (c == '^') || (c == '\\')); } /*--------------------------------------------------------------------------*/ |