diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2012-06-29 13:01:20 -0700 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2012-06-30 22:01:43 +0200 |
commit | f5df9ab54916ebe059b4bc5ae1a9b4d721e132c3 (patch) | |
tree | 7732f0876189918a87360b20443dffdfa3a22eb7 /src | |
parent | d471a2192015440ec9b8c409268ba6433511f421 (diff) |
build: use the standard AM_V_GEN definition for output.
This actually allows for the command to be printed if using `make V=1`
Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index b79c8b70..36f95eef 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -39,5 +39,4 @@ libosmocore_la_SOURCES += serial.c endif crc%gen.c: crcXXgen.c.tpl - @echo " SED $< -> $@" - @sed -e's/XX/$*/g' $< > $@ + $(AM_V_GEN)sed -e's/XX/$*/g' $< > $@ |