From 6fd903a4deaa99fa2b1a482a5c775023f1a829ea Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Wed, 22 Oct 2008 05:19:04 +0000 Subject: new package wizard: change bash-specific construct Patch by Markus Heidelberg. ${VAR//-/_} which replaces - with _ aborts with "syntax error" on a system where /bin/sh points to dash. Use tr therefor as already done in the line above rather than changing the shebang to bash. --- scripts/add_new_package.wizard | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/add_new_package.wizard b/scripts/add_new_package.wizard index 63078b0fc..4ad72c935 100755 --- a/scripts/add_new_package.wizard +++ b/scripts/add_new_package.wizard @@ -48,8 +48,7 @@ read CONFIG_OPTIONS URL=${DOWNLOAD_LOC%/*} TARBALL=${DOWNLOAD_LOC##*/} EXTENSION=${TARBALL##*.tar.} -NAME_UPPER=`echo ${PACKAGE_NAME} | tr [a-z] [A-Z]` -NAME_UPPER=${NAME_UPPER//-/_} +NAME_UPPER=`echo ${PACKAGE_NAME} | tr a-z- A-Z_` mkdir ../package/${PACKAGE_NAME} -- cgit v1.2.3