summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArkadiusz Miśkiewicz2021-02-23 07:21:36 (GMT)
committerArkadiusz Miśkiewicz2021-02-23 07:21:36 (GMT)
commit275c43f3d1692fbb4448502b5509a516c118d3e1 (patch)
tree1ab6ac5529ed9d55e009ef62b7a107c83c9a35b9
parent9236d6a6ca849c358fb4afc10976803009887d05 (diff)
downloadpld-builder.new-275c43f3d1692fbb4448502b5509a516c118d3e1.zip
pld-builder.new-275c43f3d1692fbb4448502b5509a516c118d3e1.tar.gz
Fix expansion.
-rw-r--r--PLD_Builder/install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/PLD_Builder/install.py b/PLD_Builder/install.py
index 4915339..a688a48 100644
--- a/PLD_Builder/install.py
+++ b/PLD_Builder/install.py
@@ -151,7 +151,7 @@ def install_br(r, b):
rpmcommand = "rpmbuild --nobuild -br"
else:
rpmcommand = "rpmbuild --nobuild"
- cmd = "set -e; TMPDIR=%(tmpdir)s %(rpmcommand) %(rpmdefs)s %(topdir)s/%(spec)s 2>&1" % {
+ cmd = "set -e; TMPDIR=%(tmpdir)s %(rpmcommand)s %(rpmdefs)s %(topdir)s/%(spec)s 2>&1" % {
'rpmcommand': rpmcommand,
'tmpdir': tmpdir,
'topdir' : b.get_topdir(),