Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10167 - main/branches/prefix/bin
Date: Sun, 04 May 2008 07:46:03
Message-Id: E1JsYv3-00081r-2a@stork.gentoo.org
1 Author: grobian
2 Date: 2008-05-04 07:46:00 +0000 (Sun, 04 May 2008)
3 New Revision: 10167
4
5 Modified:
6 main/branches/prefix/bin/misc-functions.sh
7 Log:
8 Mach-O 2 format is essentially just a ';' instead of a ' ' so we can cope with paths containing spaces. I still need to implement the Darwin logic though.
9
10 Modified: main/branches/prefix/bin/misc-functions.sh
11 ===================================================================
12 --- main/branches/prefix/bin/misc-functions.sh 2008-05-04 06:41:57 UTC (rev 10166)
13 +++ main/branches/prefix/bin/misc-functions.sh 2008-05-04 07:46:00 UTC (rev 10167)
14 @@ -401,7 +401,7 @@
15 done
16 if [[ -f "${T}"/.NEEDED.tmp ]] ; then
17 needed=$(< "${T}"/.NEEDED.tmp)
18 - echo "/${f#${D}} ${needed#,}" >> "${PORTAGE_BUILDDIR}"/build-info/NEEDED
19 + echo "/${f#${D}};${needed#,}" >> "${PORTAGE_BUILDDIR}"/build-info/NEEDED.MACHO.2
20 fi
21 done
22 if [[ -f ${T}/.install_name_check_failed ]] ; then
23
24 --
25 gentoo-commits@l.g.o mailing list