Fix Makefile to remove all_files.tmp properly.

This commit is contained in:
Kalervo Kujala 2012-01-12 21:05:12 +02:00
parent e39c30421b
commit 0ae7d53526

View File

@ -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 ..