diff options
author | Teddy Wing | 2021-03-20 12:51:59 +0100 |
---|---|---|
committer | Teddy Wing | 2021-03-20 12:59:43 +0100 |
commit | 40bcc56c77e0b27ead8a232be34106c6b60a1684 (patch) | |
tree | 1482f06461cfdb66f2cb6de50a70df2f761cd3c5 /Makefile | |
parent | 7bf73bcd0a13d5c085415dd461a436294f54fbc1 (diff) | |
download | mutt-ottolangy-40bcc56c77e0b27ead8a232be34106c6b60a1684.tar.bz2 |
doc/ottolangy.1.txt: Add the install prefix to installed files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -33,4 +33,6 @@ test: $(DEBUG_PRODUCT) doc: $(MAN_PAGE) $(MAN_PAGE): doc/ottolangy.1.txt - a2x --no-xmllint --format manpage $< + sed "s/\$$PREFIX/$$PREFIX/g" $< > "$<.tmp" + a2x --no-xmllint --format manpage "$<.tmp" + rm "$<.tmp" |