From: Arfrever Frehtes Taifersar Arahesis Date: Fri, 23 Sep 2011 03:23:01 +0000 (+0200) Subject: Fix 'shopt: +s: invalid shell option name' error. X-Git-Tag: v2.2.0_alpha60~39 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=13660734e81a8d35c7204fe05fb26068ad7bd19f;p=portage.git Fix 'shopt: +s: invalid shell option name' error. --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 7d858a28a..a54ce2b79 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -996,7 +996,7 @@ install_hooks() { ret=$(( $ret | $? )) fi done - shopt +s nullglob + shopt -u nullglob return $ret }