From 0ae7d5352648d8b1a80983fa80c35a691bf79e00 Mon Sep 17 00:00:00 2001 From: Kalervo Kujala Date: Thu, 12 Jan 2012 21:05:12 +0200 Subject: [PATCH] Fix Makefile to remove all_files.tmp properly. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e9c2cc370..c9de61c1c 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ bundle: | $(BUILD_DIR) cat $(PDF_JS_FILES) > all_files.tmp; \ sed '/PDFJSSCRIPT_INCLUDE_ALL/ r all_files.tmp' pdf.js > ../$(BUILD_TARGET); \ sed -i.bak "s/PDFJSSCRIPT_BUNDLE_VER/`git log --format="%h" -n 1`/" ../$(BUILD_TARGET); \ - rm -f ../$(BUILD_TARGET).bak + rm -f ../$(BUILD_TARGET).bak; \ rm -f *.tmp; \ cd ..