diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-01 00:27:49 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-01 00:27:49 -0400 |
commit | 0eecf48fd44050ba4a355744f2e6c57ae561659b (patch) | |
tree | 7547ae44496cd9707b66362c5decba3ce44efd91 /sim/common | |
parent | 8009a84cfd52c16bf6bcd0477ec89ff531bea678 (diff) | |
download | gdb-0eecf48fd44050ba4a355744f2e6c57ae561659b.zip gdb-0eecf48fd44050ba4a355744f2e6c57ae561659b.tar.gz gdb-0eecf48fd44050ba4a355744f2e6c57ae561659b.tar.bz2 |
sim: igen: minor build output alignment fix
The custom echo was off by one space relative to all the others.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/Make-common.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 4c83059..9274c65 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -47,7 +47,7 @@ include $(srcroot)/gdb/silent-rules.mk ifeq ($(V),0) ECHO_STAMP = @echo " GEN " -ECHO_IGEN = @echo " IGEN $(<F)"; +ECHO_IGEN = @echo " IGEN $(<F)"; else ECHO_STAMP = @: endif |