diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-03-07 19:37:48 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-06-15 18:25:10 -0400 |
commit | 356ca1db47be674aa9125b65668e8fe0573f7f69 (patch) | |
tree | 28dd28a955d49de897e5a5a7202323d0a33ee356 | |
parent | 6f362f8d962ff7054682cfb2d88e8603e1219492 (diff) |
config: rm is about removal, not generation
Automake:
AM_V_at as a prefix to commands that should not output anything in silent mode
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2633d5e..2d48833 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -68,7 +68,7 @@ twm_SOURCES = \ BUILT_SOURCES = gram.h deftwmrc.c deftwmrc.c: system.twmrc - $(AM_V_GEN)rm -f $@ ; \ + $(AM_V_at)rm -f $@ ; \ echo '/* ' >>$@ ; \ echo ' * This file is generated automatically from the default' >>$@ ; \ echo ' * twm bindings file system.twmrc by the twm Makefile.' >>$@ ; \ |