euse: Fix query to get USE, bug 181309, thanks to Jean-Baptiste Rouault
authoridl0r <idl0r@gentoo.org>
Tue, 6 Apr 2010 21:23:46 +0000 (21:23 -0000)
committeridl0r <idl0r@gentoo.org>
Tue, 6 Apr 2010 21:23:46 +0000 (21:23 -0000)
<jbrouault@gmail.com>.

svn path=/trunk/gentoolkit/; revision=767

ChangeLog
bin/euse

index 25573c6fe03bd3b302b9292c0c09d0e7355aa15a..0c5e3e25e0eae28c939a6c483cfb196b6b4bf067 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-06: Christian Ruppert <idl0r@gentoo.org>
+       * euse: Fix query to get USE, bug 181309, thanks to Jean-Baptiste Rouault
+       <jbrouault@gmail.com>.
+
 2010-04-01: Christian Ruppert <idl0r@gentoo.org>
        * revdep-rebuild: Use EMERGE_OPTIONS _after_ EMERGE_DEFAULT_OPTS,
        bug 307023, thanks to Albert W. Hopkins <marduk@python.net>.
index 595088894158f9349b9761407d8803a4e5feadce..023bfe409216bc0ba43bd119f16456c0abdf914c 100755 (executable)
--- a/bin/euse
+++ b/bin/euse
@@ -176,7 +176,7 @@ get_useflags() {
 
        # get the currently active USE flags as seen by portage, this has to be after
        # restoring USE or portage won't see the original environment
-       ACTIVE_FLAGS[9]="$(emerge --info | grep 'USE=' | cut -b 5- | sed -e 's:"::g')" #'
+       ACTIVE_FLAGS[9]="$(portageq envvar USE)" #'
        USE_FLAGS_CALCULATED=1
 }