1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Daniel Stenberg 2002-05-31 08:21:20 +00:00
parent 65379df445
commit c38ccba483

7
tools/configure vendored
View file

@ -72,6 +72,13 @@ EOF
echo "Created Makefile"
}
if [ "$target" = "--help" -o \
"$target" = "-h" ]; then
echo "Just invoke the script and answer the questions."
echo "This script will write a Makefile for you"
exit
fi
# get our current directory
pwd=`pwd`;