summaryrefslogtreecommitdiff
path: root/automake.in
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2002-06-21 19:59:40 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2002-06-21 19:59:40 +0000
commitea756611ae0fd46ebf00768ddc77e8cea812c6f8 (patch)
tree0e969064dd7ba913f348d908b950d8ec4be2a35f /automake.in
parent09bd5f35e4194e9d73c830a07475303081af2424 (diff)
downloadautomake-ea756611ae0fd46ebf00768ddc77e8cea812c6f8.tar.gz
* automake.in (lang_yacc_target_hook): Add $output to
@maintainer_clean_files. This was lost on 2001-06-23. * tests/yacc7.test, tests/yacc4.test: Complete to check that maintainer-clean erases YACC's output files, respectively with and without `-d'. Reported by Flavien Astraud.
Diffstat (limited to 'automake.in')
-rwxr-xr-xautomake.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/automake.in b/automake.in
index f639dc024..756ce9038 100755
--- a/automake.in
+++ b/automake.in
@@ -5115,6 +5115,9 @@ sub lang_yacc_target_hook
# do.
push (@maintainer_clean_files, $header);
}
+ # Erase $OUTPUT on `make maintainer-clean' (by GNU standards).
+ # See the comment above for $HEADER.
+ push (@maintainer_clean_files, $output);
}
# This is a helper for both lex and yacc.