Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r14443 - main/branches/prefix/bin
Date: Sun, 27 Sep 2009 09:15:08
Message-Id: E1MrpqU-00050y-A9@stork.gentoo.org
1 Author: grobian
2 Date: 2009-09-27 09:15:05 +0000 (Sun, 27 Sep 2009)
3 New Revision: 14443
4
5 Modified:
6 main/branches/prefix/bin/misc-functions.sh
7 Log:
8 don't mix ewarn and eqawarn, or the eqawarn messages won't be elogged (and hence repeated at the end)
9
10 Modified: main/branches/prefix/bin/misc-functions.sh
11 ===================================================================
12 --- main/branches/prefix/bin/misc-functions.sh 2009-09-26 23:37:34 UTC (rev 14442)
13 +++ main/branches/prefix/bin/misc-functions.sh 2009-09-27 09:15:05 UTC (rev 14443)
14 @@ -498,7 +498,7 @@
15 [[ ${line[0]} == ${EPREFIX}* ]] && continue
16 # can we just fix it(tm)?
17 if [[ -x ${EPREFIX}${line[0]} || -x ${ED}${line[0]} ]] ; then
18 - ewarn "prefixing shebang of ${fn#${D}}"
19 + eqawarn "prefixing shebang of ${fn#${D}}"
20 sed -i -e '1s:^#! \?:#!'"${EPREFIX}"':' "${fn}"
21 continue
22 fi