diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-07-04 09:40:20 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-07-04 09:48:02 -0400 |
commit | 30ef953393f1253b78f7cf0b7819602d6944ad8e (patch) | |
tree | 200ebff881a9c9c0f86a84e2c84ba2e8c0629030 | |
parent | 961f8a0f56b13e4c03ad22367db3320592a2b5cc (diff) | |
download | rockbox-30ef953393.tar.gz rockbox-30ef953393.zip |
configure: Fix 'make reconf' when win64 sim builds are enabled
Change-Id: I9d3c23dee58cb3b4edce7bfcc0429500ffe23e58
-rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index b1f2308a3e..1bc64484f0 100755 --- a/tools/configure +++ b/tools/configure @@ -4736,7 +4736,7 @@ cmdline=`echo $cmdline | sed -e s,--target=[a-zA-Z_0-9]\*,,g \ -e s,--ram=[0-9]\*,,g \ -e s,--rbdir=[./a-zA-Z0-9]\*,,g \ -e s,--voice=[-_./a-zA-Z0-9]\*,,g \ - -e s,--type=[a-zA-Z]\*,,g` + -e s,--type=[a-zA-Z0-9]\*,,g` cmdline="$cmdline --target=\$(MODELNAME) --ram=\$(MEMORYSIZE) --rbdir=\$(RBDIR) --type=$btype$advopts" ### end of cmdline |