summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2011-10-03 20:36:46 +0000
committerJens Arnold <amiconn@rockbox.org>2011-10-03 20:36:46 +0000
commit81ff054d804e7faa8ddb31227a857801116722ae (patch)
tree4da5a1894d7fc8be953654f208af1cd7132c57a9
parent6832175412e096a6ce43ea1048cbdb7e51159886 (diff)
downloadrockbox-81ff054d804e7faa8ddb31227a857801116722ae.tar.gz
rockbox-81ff054d804e7faa8ddb31227a857801116722ae.zip
Fix 'make reconf' for iriver H10 5/6GB. Model name contains an underscore.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30702 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index c06611e105..3d1aad7667 100755
--- a/tools/configure
+++ b/tools/configure
@@ -3627,7 +3627,7 @@ if [ -n "$ARG_LCDWIDTH" ]; then
3627fi 3627fi
3628 3628
3629# remove parts from the cmdline we're going to set unconditionally 3629# remove parts from the cmdline we're going to set unconditionally
3630cmdline=`echo $cmdline | sed -e s,--target=[a-zA-Z0-9]\*,,g \ 3630cmdline=`echo $cmdline | sed -e s,--target=[a-zA-Z_0-9]\*,,g \
3631 -e s,--ram=[0-9]\*,,g \ 3631 -e s,--ram=[0-9]\*,,g \
3632 -e s,--rbdir=[./a-zA-Z0-9]\*,,g \ 3632 -e s,--rbdir=[./a-zA-Z0-9]\*,,g \
3633 -e s,--type=[a-zA-Z]\*,,g` 3633 -e s,--type=[a-zA-Z]\*,,g`