Skip to content
Snippets Groups Projects
Commit b272968e authored by Peter Palfrader's avatar Peter Palfrader
Browse files

And stop it from falling over because it tries to call non-existant build...

And stop it from falling over because it tries to call non-existant build scripts for building html files we do not need anyway
parent 8b79e5e4
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,9 @@ build-stamp: config.status
elif [ -e "$$base".8 ]; then mv "$$base".8 "$$base".1.in; \
else echo >&2 "No output produced by a2px?" && exit 1; fi || exit 1; \
done
# Also touch all the .html files or else the build system will
# try to re-create them and fail badly
for file in $(MANPAGE_INS); do touch $${file%%.1.in}.html.in || exit 1; done
$(MAKE)
@echo
@echo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment