summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-30 22:15:17 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-30 22:15:17 +0200
commit5a281f7290b0e49e0beab4e70a18243c9cd28b98 (patch)
treeb3a8f07f8f4b13ae8ca0ddac31d5fb1091319570
parent924e7b3a078c6552fc55d6e1965d241292e9b48a (diff)
We don't have python f-strings everywhere.
-rw-r--r--platform/linux/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/linux/wscript b/platform/linux/wscript
index 8518bd6b2..98aff905d 100644
--- a/platform/linux/wscript
+++ b/platform/linux/wscript
@@ -1,7 +1,7 @@
def desktop(bld, suffix):
obj = bld(features='subst')
- obj.source = f'dcpomatic{suffix}.desktop.in'
- obj.target = 'dcpomatic2{suffix}.desktop'
+ obj.source = 'dcpomatic' + suffix + '.desktop.in'
+ obj.target = 'dcpomatic2' + suffix + '.desktop'
obj.INSTALL_PREFIX = bld.env.INSTALL_PREFIX
obj.VERSION = bld.env.VERSION
return obj.target