diff options
author | Rene Engelhard <rene@openoffice.org> | 2010-06-22 17:22:35 +0200 |
---|---|---|
committer | Rene Engelhard <rene@openoffice.org> | 2010-06-22 17:22:35 +0200 |
commit | 01b9b273c3561805533062431ab9e40f24b614f3 (patch) | |
tree | 70105f6786e7fd7256997d6e28251dc956be744f /set_soenv.in | |
parent | 2bdd03ee6b9c88a24f0e6ecb8f3f474c1af0b3a6 (diff) |
configure25: #i98363# fix match in set_soenv on Solaris 10
Diffstat (limited to 'set_soenv.in')
-rw-r--r-- | set_soenv.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/set_soenv.in b/set_soenv.in index 7983933c655e..07d42dfc2bb2 100644 --- a/set_soenv.in +++ b/set_soenv.in @@ -1384,7 +1384,7 @@ if ($platform =~ m/linux|freebsd|netbsd/) # This simply adds an include path, so even cases that break the FHS work $SOLARINC .= $STLPORT_inc_stlport; } -if ($platform =~ m/solaris/ && $CC !=~ "gcc") +if ($platform =~ m/solaris/ && ! $CC =~ "gcc") { $SOLARINC .= '/SC5 '; } |