Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12108 - main/branches/2.1.6/bin
Date: Wed, 26 Nov 2008 20:30:24
Message-Id: E1L5R1j-0006Ss-97@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-11-26 20:30:22 +0000 (Wed, 26 Nov 2008)
3 New Revision: 12108
4
5 Modified:
6 main/branches/2.1.6/bin/isolated-functions.sh
7 Log:
8 Don't direct to /dev/null when creating $EBUILD_EXIT_STATUS_FILE inside die.
9 (trunk r12107)
10
11
12 Modified: main/branches/2.1.6/bin/isolated-functions.sh
13 ===================================================================
14 --- main/branches/2.1.6/bin/isolated-functions.sh 2008-11-26 20:29:11 UTC (rev 12107)
15 +++ main/branches/2.1.6/bin/isolated-functions.sh 2008-11-26 20:30:22 UTC (rev 12108)
16 @@ -134,8 +134,7 @@
17 done
18 fi
19
20 - [ -n "${EBUILD_EXIT_STATUS_FILE}" ] && \
21 - touch "${EBUILD_EXIT_STATUS_FILE}" &>/dev/null
22 + [ -n "$EBUILD_EXIT_STATUS_FILE" ] && > "$EBUILD_EXIT_STATUS_FILE"
23
24 # subshell die support
25 kill -s SIGTERM ${EBUILD_MASTER_PID}