diff options
| author | Stefan Weil | 2009-11-19 20:19:56 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2009-12-03 22:25:59 +0100 |
| commit | 01d86a8544e9c8dd1cf12f66ce850db365c38f25 (patch) | |
| tree | 6e7a6f78bd8b23e1e3a4b4c62773e20ee345db3d | |
| parent | Fix build for mingw32 on windows ($@ in macro) (diff) | |
| download | qemu-01d86a8544e9c8dd1cf12f66ce850db365c38f25.tar.gz qemu-01d86a8544e9c8dd1cf12f66ce850db365c38f25.tar.xz qemu-01d86a8544e9c8dd1cf12f66ce850db365c38f25.zip | |
Fix build for mingw32 on windows ($$ expansion)
Make using mingw32 on windows fails when running grep "=y$$".
The command is expanded to grep "=y$ and the missing "
results in an error.
I don't expect a file config-devices.mak with =y somewhere in
the middle of a line (they are always at the end of the line),
so simplifying the regular expression to =y seems to be permitted.
This avoids problems with wrong expansion.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) config-all-devices.mak: $(SUBDIR_DEVICES_MAK) - $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep "=y$$" | sort -u > $@," GEN $@") + $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@") %/config-devices.mak: default-configs/%.mak $(call quiet-command,cat $< > $@.tmp, " GEN $@") |
