summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorHolger Wansing <hwansing@mailbox.org>2020-01-18 13:17:57 +0100
committerHolger Wansing <hwansing@mailbox.org>2020-01-18 13:17:57 +0100
commitdd2a1833c29eeb06dfc7d6e6c1ef8f8dda355e43 (patch)
tree8694f3de04c6e4edfe70107b324d5cd4f6435159 /build
parentc072a23a1e66f1871139e00e85ca90c66a5be024 (diff)
downloadinstallation-guide-dd2a1833c29eeb06dfc7d6e6c1ef8f8dda355e43.zip
Correct filename syntax for PDF and TXT formats, when building for the website, to get valid filename suffixes
Diffstat (limited to 'build')
-rw-r--r--build/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Makefile b/build/Makefile
index 61413df52..dbb406c6a 100644
--- a/build/Makefile
+++ b/build/Makefile
@@ -35,7 +35,7 @@ $(TARGETS): %:
else \
# Do not fail because of missing PDF support for some languages \
if [ -n "$$web" ] ; then \
- mv ./$$destdir/install.$$lang.$$format "$$arch_destination/$$destsuffix/install.$$format.$$lang_id" 2>/dev/null || true ; \
+ mv ./$$destdir/install.$$lang.$$format "$$arch_destination/$$destsuffix/install.$$lang_id.$$format" 2>/dev/null || true ; \
else \
mv ./$$destdir/install.$$lang.$$format "$$arch_destination/$$destsuffix" 2>/dev/null || true ; \
fi ; \