http://bugs.winehq.org/show_bug.cgi?id=4640
Summary: wineprefixcreate uses incorrect shopt form setting nullglob Product: Wine Version: 0.9.8. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-tools AssignedTo: wine-bugs@winehq.org ReportedBy: cduffy@spamcop.net
The line "shopt -o nullglob" should instead be "shopt -s nullglob". "shopt -o" restricts options to those listed under "set -o", and as of bash 2.05b, nullglob is not a member of that set.