[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] Build groff from CVS - afmtodit not found
From: |
Ralph Corderoy |
Subject: |
Re: [Groff] Build groff from CVS - afmtodit not found |
Date: |
Sun, 16 Sep 2012 17:55:23 +0100 |
Hi,
Deri wrote:
> I am still working on a more robust solution which will stop the make
> failing if the required fonts are not found.
>From the OP's description it sounds like the makefile uses shell
redirection leaving the built file behind on failure so the next plain
`make' thinks it's already built. Perhaps something to look out for in
general in the makefiles, or consider the addition of special target
.DELETE_ON_ERROR.
http://www.gnu.org/software/make/manual/html_node/Errors.html#Errors
bar.out: bar
./foo bar >bar.out
./foo bar >bar.tmp && mv bar.tmp bar.out
Cheers, Ralph.