diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-11-06 08:58:08 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-11-06 08:58:08 +0000 |
commit | a6ae4ba0d5534dcaa697e58a76da48da7603b25a (patch) | |
tree | 9048f8db9c94b828b8bcf06b12892183954b8df4 | |
parent | 00a39f6c0f8db16e7aaefc10861fa435c3c02173 (diff) | |
download | portage-a6ae4ba0d5534dcaa697e58a76da48da7603b25a.tar.gz portage-a6ae4ba0d5534dcaa697e58a76da48da7603b25a.tar.bz2 portage-a6ae4ba0d5534dcaa697e58a76da48da7603b25a.zip |
Remove references to ${O} in dyn_spec() since antarus
made that variable mutable.
svn path=/main/trunk/; revision=8444
-rwxr-xr-x | bin/misc-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 48611fabd..7e36f4d22 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -534,7 +534,7 @@ dyn_package() { dyn_spec() { tar czf "/usr/src/rpm/SOURCES/${PF}.tar.gz" \ - "${O}/${PF}.ebuild" "${O}/files" || \ + "${EBUILD}" "${FILESDIR}" || \ die "Failed to create base rpm tarball." cat <<__END1__ > ${PF}.spec |