From b641599c2119bda54d0663becfdfb29eb25430a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jani=20V=C3=A4limaa?= Date: Sat, 23 Mar 2024 23:14:31 +0200 Subject: build.py: restructure code a bit --- BuildManager/build.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'BuildManager') diff --git a/BuildManager/build.py b/BuildManager/build.py index daf2b24..38bde2f 100644 --- a/BuildManager/build.py +++ b/BuildManager/build.py @@ -199,16 +199,15 @@ def buildpkg(pkg, stage, unpack_dir, passtrough="", show_log=0, dryrun=0): status = 0 if stage != STAGE_UNPACK: stagechar = ["p","r","c","i","s","b","a"][stage-1] + tmppath = "" + nodeps = "" + topdir = "--define '_topdir %s'" % pkg.builddir if not dryrun and os.path.isdir(pkg.builddir+"/BUILDROOT"): - tmppath = " --define '_tmppath %s/BUILDROOT'" % pkg.builddir - else: - tmppath = "" + tmppath = "--define '_tmppath %s/BUILDROOT'" % pkg.builddir if stage == STAGE_PREP: nodeps = "--nodeps" - else: - nodeps = "" - cmd = "rpmbuild -b%s %s --define '_topdir %s'%s %s %s 2>&1" % \ - (stagechar,nodeps,pkg.builddir,tmppath,passtrough,pkg.spec) + cmd = "rpmbuild -b%s %s %s %s %s %s 2>&1" % \ + (stagechar, nodeps, topdir, tmppath, passtrough, pkg.spec) logger.debug("rpmbuild command: "+cmd) if not dryrun: log = codecs.open(pkg.log, "w", 'utf-8', errors = "replace") -- cgit v1.2.1