summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-31 08:21:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-31 08:21:20 +0000
commitc38ccba483397ac39646202dbf4a9cab5a80cc18 (patch)
treed39c1dd5d75aca9223a8e76987b21d9416ae37f8 /tools/configure
parent65379df4451fa906e1dfee6bf7100c4555be831a (diff)
downloadrockbox-c38ccba483397ac39646202dbf4a9cab5a80cc18.tar.gz
rockbox-c38ccba483397ac39646202dbf4a9cab5a80cc18.zip
made it support --help or -h as arguments, and then displays a very short
and really not very helpful message but now you know where to fill in that very large and friendly help text you want the users to see! ;-) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@845 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 307f66aa70..f60b4bfc16 100755
--- a/tools/configure
+++ b/tools/configure
@@ -72,6 +72,13 @@ EOF
72echo "Created Makefile" 72echo "Created Makefile"
73} 73}
74 74
75if [ "$target" = "--help" -o \
76 "$target" = "-h" ]; then
77 echo "Just invoke the script and answer the questions."
78 echo "This script will write a Makefile for you"
79 exit
80fi
81
75# get our current directory 82# get our current directory
76pwd=`pwd`; 83pwd=`pwd`;
77 84