From c74f9cb7d12e1ef8d361106cd430f097f0449e8b Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 26 Jul 2008 06:17:54 +0000 Subject: * 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 --- bin/misc-functions.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3-1-g7c22