From f60b531ee932751ced9dc8fe71d1c335212c2176 Mon Sep 17 00:00:00 2001 From: "jkeating@reducto.boston.redhat.com" <> Date: Wed, 21 Feb 2007 16:12:31 -0500 Subject: [PATCH] Don't use TMPDIR with buildinstall for now --- Changelog | 3 +++ pypungi/pungi.py | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 0fd81e4c..874e4b66 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Wed Feb 21 2007 Jesse Keating +- Don't use TMPDIR with buildinstall for now + * Fri Feb 16 2007 Jesse Keating - Make use of anaconda's TMPDIR support - Put yum tempdirs in the workdir diff --git a/pypungi/pungi.py b/pypungi/pungi.py index 54db2339..7b6da570 100755 --- a/pypungi/pungi.py +++ b/pypungi/pungi.py @@ -78,7 +78,9 @@ class Pungi: self.config.get('default', 'version'), '%s %s' % (self.config.get('default', 'product_name'), self.config.get('default', 'version')), self.config.get('default', 'product_path'), bugurl, self.topdir) - res = commands.getoutput('TMPDIR=%s /usr/lib/anaconda-runtime/buildinstall %s' % (self.workdir, args)) + #res = commands.getoutput('TMPDIR=%s /usr/lib/anaconda-runtime/buildinstall %s' % (self.workdir, args)) + # TMPDIR is broken in buildinstall + friends right now + res = commands.getoutput('/usr/lib/anaconda-runtime/buildinstall %s' % args) log.info("Result from buildinstall %s: %s" % (args, res)) self.writeinfo('tree: %s' % self.mkrelative(self.topdir))