diff --git a/ChangeLog-current.txt b/ChangeLog-current.txt index b0d9f15..c92324e 100644 --- a/ChangeLog-current.txt +++ b/ChangeLog-current.txt @@ -9,4 +9,6 @@ enhancements: * Add ":force" to sbopkg.conf WGETFLAGS --progress=bar to correctly display the wget progress bar; thanks to happyslacker for nudging me on this issue again. + * Fix an issue with the build options dialog menu where selecting 'None' + would not work; thanks to happyslacker for the bug report. +--------------------------+ diff --git a/src/usr/sbin/sbopkg b/src/usr/sbin/sbopkg index ff854e8..de962c9 100755 --- a/src/usr/sbin/sbopkg +++ b/src/usr/sbin/sbopkg @@ -3303,7 +3303,7 @@ use_options() { rm -f $OPTLIST $OPTCHOICE return 1 else - if [[ $OPTCHOICE == "None" ]]; then + if [[ $(< $OPTCHOICE) == "None" ]]; then rm -f $OPTLIST $OPTCHOICE else cp "$OPTCHOICE" $PKGPATH/options.build