summaryrefslogtreecommitdiff
path: root/newapkbuild.in
diff options
context:
space:
mode:
Diffstat (limited to 'newapkbuild.in')
-rwxr-xr-xnewapkbuild.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/newapkbuild.in b/newapkbuild.in
index dce3133..85f87b5 100755
--- a/newapkbuild.in
+++ b/newapkbuild.in
@@ -268,14 +268,14 @@ usage() {
echo " -h Show this help"
echo " -l Set package license to LICENSE"
echo " -p Create perl package (Assume Makefile.PL is there)"
- echo " -q Create python package (Assume setup.py is there)"
+ echo " -y Create python package (Assume setup.py is there)"
echo " -u Set package URL"
echo " -s Use sourceforge source URL"
echo ""
exit 0
}
-while getopts "acd:fhl:pqu:s" opt; do
+while getopts "acd:fhl:pyu:s" opt; do
case $opt in
'a') buildtype="autotools";;
'c') cpinitd=1;;
@@ -284,7 +284,7 @@ while getopts "acd:fhl:pqu:s" opt; do
'h') usage;;
'l') license="$OPTARG";;
'p') buildtype="perl";;
- 'q') buildtype="python";;
+ 'y') buildtype="python";;
'u') url="$OPTARG";;
's') sourceforge=1;;
esac