Change gnustep-config to use = instead of == when comparing strings,

otherwise --help option fails.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@24693 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Graham J Lee 2007-02-26 16:19:24 +00:00
parent 299eb7e040
commit a631ec8660
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-02-26 Graham Lee <leeg@thaesofereode.info>
* gnustep-config.in: Bugfix to a test which stopped '--help' from
working.
2007-02-26 Nicola Pero <nicola.pero@meta-innovation.com>
tcsh 6.12 has a 30 char limit on variable names, so

View file

@ -47,7 +47,7 @@ esac
# Process --help
if [ "$1" == "--help" ]; then
if [ "$1" = "--help" ]; then
echo "usage: gnustep-config [option]"
echo
echo "This program prints information on the current gnustep"