Skip to content

Commit

Permalink
Merge pull request #304 from cavalier38/plugin.d
Browse files Browse the repository at this point in the history
Plugin.d
  • Loading branch information
Ratler committed Apr 21, 2013
2 parents 45ebb3c + 2606ad1 commit 799f23a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compilers/gcc/plugin.d/optimize-gcc_4_7.plugin
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ EOF

while true; do
unset OPTIONS
IS_DEFAULT=$([ `get_local_config LUNAR_COMPILER` == "GCC_4_7" ] && echo DEFAULT || get_local_config LUNAR_COMPILER)
IS_DEFAULT=$([ "$(get_local_config LUNAR_COMPILER)" == "GCC_4_7" ] && echo DEFAULT || get_local_config LUNAR_COMPILER)
DEFAULT=${CHOICE:-safe}
CHOICE=`$DIALOG --title "$TITLE" --ok-label "Select" --cancel-label "Close" --default-item "$DEFAULT" --item-help --menu "" 0 0 0 $(
echo "default"
Expand Down
2 changes: 1 addition & 1 deletion utils/ccache/plugin.d/optimize-ccache.plugin
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ EOF
if [ $? != 0 ]; then
break
else
if [ $USE_CCACHE == 'yes' ]; then
if [ "$USE_CCACHE" == 'yes' ]; then
USE_CCACHE=no
else
USE_CCACHE=yes
Expand Down

0 comments on commit 799f23a

Please sign in to comment.