diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-02-18 23:27:57 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-02-18 23:27:57 +0000 |
commit | d42e48a70986ae6a0b1c50543cdc7bc221c71016 (patch) | |
tree | 07f760051c3c2213cd705d749e6ea2cbf627bc4a | |
parent | 687212102e9243e3acc3bf8a5515d9a1ec0c4529 (diff) | |
download | portage-d42e48a70986ae6a0b1c50543cdc7bc221c71016.tar.gz portage-d42e48a70986ae6a0b1c50543cdc7bc221c71016.tar.bz2 portage-d42e48a70986ae6a0b1c50543cdc7bc221c71016.zip |
Don't exclude . since that excludes the entire contents of some tar files.
svn path=/main/trunk/; revision=6004
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 69f22f44c..7c85b5a39 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -310,7 +310,7 @@ unpack() { local x local y local myfail - local tar_opts="--exclude ." # preserve ${PORTAGE_WORKDIR_MODE} + local tar_opts="" [ -z "$*" ] && die "Nothing passed to the 'unpack' command" for x in "$@"; do |