From: Kalervo Kujala Date: Thu, 12 Jan 2012 19:05:12 +0000 (+0200) Subject: Fix Makefile to remove all_files.tmp properly. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=0ae7d5352648d8b1a80983fa80c35a691bf79e00;p=pdf.js.git Fix Makefile to remove all_files.tmp properly. --- diff --git a/Makefile b/Makefile index e9c2cc3..c9de61c 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 ..