From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1R6wPG-00019X-4D for garchives@archives.gentoo.org; Fri, 23 Sep 2011 03:26:31 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2FF921C072; Fri, 23 Sep 2011 03:26:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id AA64F21C072 for ; Fri, 23 Sep 2011 03:26:17 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B2FA1B4017 for ; Fri, 23 Sep 2011 03:26:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 82B0080042 for ; Fri, 23 Sep 2011 03:26:15 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <13660734e81a8d35c7204fe05fb26068ad7bd19f.arfrever@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: 13660734e81a8d35c7204fe05fb26068ad7bd19f Date: Fri, 23 Sep 2011 03:26:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 432c23293cb7d1304e20d40ec6fd02e5 commit: 13660734e81a8d35c7204fe05fb26068ad7bd19f Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Fri Sep 23 03:23:01 2011 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gentoo org> CommitDate: Fri Sep 23 03:23:01 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D13660734 Fix 'shopt: +s: invalid shell option name' error. --- bin/misc-functions.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 7d858a2..a54ce2b 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -996,7 +996,7 @@ install_hooks() { ret=3D$(( $ret | $? )) fi done - shopt +s nullglob + shopt -u nullglob return $ret } =20