summaryrefslogtreecommitdiff
path: root/package/pkgmaker
diff options
context:
space:
mode:
authorThorsten Glaser <tg@mirbsd.org>2009-12-19 22:58:11 +0059
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-20 10:35:02 +0100
commitc43aee42a122248712f1c31d481afcfce8331f64 (patch)
treef35959cd1670eeba7e6e76d75652d31a07760ab2 /package/pkgmaker
parent1c8d49e1ee453e44af6c57f10e8b929d5ccdd3a2 (diff)
tr - _ for uppercasing pkgnames for COMPILE symbols
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
Diffstat (limited to 'package/pkgmaker')
-rw-r--r--package/pkgmaker4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/pkgmaker b/package/pkgmaker
index 15ee78901..59228d753 100644
--- a/package/pkgmaker
+++ b/package/pkgmaker
@@ -6,12 +6,12 @@ else
export GMAKE=make
fi
-for subdir in bash bc mksh; do
+for subdir in alsa-lib bash bc mksh; do
cd $subdir
pn=$($GMAKE show=PKG_NAME) # pn: package name
pa=$($GMAKE show=ALL_PKGOPTS) # pa: all subpackage options
pfl=$($GMAKE show=PKG_FLAVOURS) # pfl: all package flavours
- typeset -u pnu=$pn # pnu: package name uppercase
+ typeset -u pnu=${pn//-/_} # pnu: package name uppercase
pd=$($GMAKE show=PKG_DESCR) # pd: package description
ph=$($GMAKE show=PKG_URL) # ph: package homepage