summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-12-13 03:50:56 +0000
committerZac Medico <zmedico@gentoo.org>2009-12-13 03:50:56 +0000
commitb2a3d90d9c72fe24b834043521aae28774191a2b (patch)
tree684b3c257ea6e40699b88c6cd4951a26988f2316 /bin/ebuild-helpers
parente816d756c923916cb980f473f51af94d26d76429 (diff)
downloadportage-b2a3d90d9c72fe24b834043521aae28774191a2b.tar.gz
portage-b2a3d90d9c72fe24b834043521aae28774191a2b.tar.bz2
portage-b2a3d90d9c72fe24b834043521aae28774191a2b.zip
Add EAPI 3_pre2 to conditinals so the EAPI 4 stuff is disabled. (trunk r15035)
svn path=/main/branches/2.1.7/; revision=15069
Diffstat (limited to 'bin/ebuild-helpers')
-rwxr-xr-xbin/ebuild-helpers/doins2
-rwxr-xr-xbin/ebuild-helpers/newins2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild-helpers/doins b/bin/ebuild-helpers/doins
index c5e78d9c5..7e1a9ca95 100755
--- a/bin/ebuild-helpers/doins
+++ b/bin/ebuild-helpers/doins
@@ -26,7 +26,7 @@ if [[ ${INSDESTTREE#${D}} != "${INSDESTTREE}" ]]; then
fi
case "$EAPI" in
- 0|1|2|3)
+ 0|1|2|3|3_pre2)
PRESERVE_SYMLINKS=n
;;
*)
diff --git a/bin/ebuild-helpers/newins b/bin/ebuild-helpers/newins
index d66e0599a..4b2bb2b5c 100755
--- a/bin/ebuild-helpers/newins
+++ b/bin/ebuild-helpers/newins
@@ -15,7 +15,7 @@ fi
rm -rf "${T}/${2}" || exit $?
case "$EAPI" in
- 0|1|2|3)
+ 0|1|2|3|3_pre2)
cp "$1" "$T/$2" || exit $?
;;
*)