diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-07-08 17:33:05 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-17 15:11:47 +0200 |
commit | fb93fa92162c059f060fdcd7cdc313dd0ea9d7d0 (patch) | |
tree | 2dcd643b03a87abcf1ac8de790a0a8e8c9fd3e35 /src/Makefile.am | |
parent | da172b0ddeade361261499d6acccff1aae6df5b8 (diff) | |
download | curl-fb93fa92162c059f060fdcd7cdc313dd0ea9d7d0.tar.gz |
src/Makefile.am: add .DELETE_ON_ERROR
This prevents targets like tool_hugehelp.c from leaving around
half-constructed files if the rule fails with GNU make.
Reported-by: Rafaël Carré <funman@videolan.org>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 72e677200..d8c0c7da3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -21,6 +21,9 @@ ########################################################################### AUTOMAKE_OPTIONS = foreign nostdinc +# remove targets if the command fails +.DELETE_ON_ERROR: + # Specify our include paths here, and do it relative to $(top_srcdir) and # $(top_builddir), to ensure that these paths which belong to the library # being currently built and tested are searched before the library which |