From: Zac Medico Date: Sat, 26 Jul 2008 06:17:54 +0000 (-0000) Subject: * For bug 227625, automatically create the /usr/src/rpm/SOURCES directory when X-Git-Tag: v2.2_rc4~33 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c74f9cb7d12e1ef8d361106cd430f097f0449e8b;p=portage.git * For bug 227625, automatically create the /usr/src/rpm/SOURCES directory when necessary. * Add `cd "${T}"` at the beginning of dyn_rpm() since the spec file is written to $PWD. svn path=/main/trunk/; revision=11194 --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index b19a75b12..80dd9d724 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -624,7 +624,9 @@ dyn_package() { } dyn_spec() { - tar czf "/usr/src/rpm/SOURCES/${PF}.tar.gz" \ + local sources_dir=/usr/src/rpm/SOURCES + mkdir -p "${sources_dir}" + tar czf "${sources_dir}/${PF}.tar.gz" \ "${EBUILD}" "${FILESDIR}" || \ die "Failed to create base rpm tarball." @@ -658,6 +660,7 @@ __END1__ } dyn_rpm() { + cd "${T}" || die "cd failed" addwrite /usr/src/rpm addwrite "${RPMDIR}" dyn_spec