diff options
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r-- | gas/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index fd2519c..332e9d8 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -311,7 +311,9 @@ config-stamp: Makefile echo '#define TARGET_CANONICAL "$(target_canonical)"' >> config.new echo '#define GAS_VERSION "$(VERSION)"' >> config.new if [ "$(defs)" != "" ]; then \ - echo '#define $(defs)' >> config.new ; \ + for d in $(defs) ; do \ + echo "#define $$d" >> config.new ; \ + done ; \ else true; fi echo '#endif /* TARGET_CPU */' >> config.new $(srcdir)/../move-if-change config.new config.h |