mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
299eb7e040
commit
a631ec8660
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue