summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-12-11 06:37:00 +0000
committerZac Medico <zmedico@gentoo.org>2009-12-11 06:37:00 +0000
commitfa00a4fde95796c62b2394c608bab838d3cdb392 (patch)
tree22187f2a61cca9a674d69f729a97313a73d1f8e1 /bin/ebuild-helpers
parent7aa1ce0f3b907334a826791fc2ee9b266a2f5127 (diff)
downloadportage-fa00a4fde95796c62b2394c608bab838d3cdb392.tar.gz
portage-fa00a4fde95796c62b2394c608bab838d3cdb392.tar.bz2
portage-fa00a4fde95796c62b2394c608bab838d3cdb392.zip
Add EAPI 3_pre2 to conditinals so the EAPI 4 stuff is disabled.
svn path=/main/trunk/; revision=15035
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 $?
;;
*)