[Lunar-commits] r17857 - lunar/branches/stable/var/lib/lunar/functions
Terry Chan
tchan at lunar-linux.org
Sat Dec 31 04:17:47 UTC 2005
Author: tchan
Date: 2005-12-31 04:17:46 +0000 (Sat, 31 Dec 2005)
New Revision: 17857
Modified:
lunar/branches/stable/var/lib/lunar/functions/optimize.lunar
Log:
Fixed the same parentheses bug that was in theedge. echo commands and parens
really should be backslashed escaped.
Modified: lunar/branches/stable/var/lib/lunar/functions/optimize.lunar
===================================================================
--- lunar/branches/stable/var/lib/lunar/functions/optimize.lunar 2005-12-31 04:10:28 UTC (rev 17856)
+++ lunar/branches/stable/var/lib/lunar/functions/optimize.lunar 2005-12-31 04:17:46 UTC (rev 17857)
@@ -649,7 +649,7 @@
optimize_addon() {
debug_msg "optimize_addon ($@)"
if ! [[ `grep ADDON /etc/lunar/local/optimizations` ]]; then
- echo ADDON=( None ) >> /etc/lunar/local/optimizations
+ echo ADDON=\( None \) >> /etc/lunar/local/optimizations
ADDON=( None )
fi
@@ -711,13 +711,13 @@
MAKES= '\n' \
BOPT=-O0 '\n' \
CPU=i386 '\n' \
-SPD=( ) '\n' \
+SPD=\( \) '\n' \
STACK= '\n' \
-XTRA=( ) '\n' \
+XTRA=\( \) '\n' \
FPM= '\n' \
-CC_OPTS=( ) '\n' \
-LDF=( ) '\n' \
-ADDON=( ) > /etc/lunar/local/optimizations
+CC_OPTS=\( \) '\n' \
+LDF=\( \) '\n' \
+ADDON=\( \) > /etc/lunar/local/optimizations
fi
#lets get the BUILD if it is not defined
More information about the Lunar-commits
mailing list