|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] stubdom: Fix the Makefile to avoid brace
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1217844924 -3600
# Node ID e8839d6028cc804d2897661d74763126e2133946
# Parent 404571b0b16912ed39266b3378a75434dcd2d919
stubdom: Fix the Makefile to avoid brace expansion
While building stubdom, I saw an error.
install: cannot stat `lib/{config,header,pci,types}.h': No such file
or directory
It seems brace expansion is not available in some environments, so we
had better avoid using it.
Signed-off-by: Yosuke Iwamatsu <y-iwamatsu@xxxxxxxxxxxxx>
---
stubdom/Makefile | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -r 404571b0b169 -r e8839d6028cc stubdom/Makefile
--- a/stubdom/Makefile Mon Aug 04 11:13:27 2008 +0100
+++ b/stubdom/Makefile Mon Aug 04 11:15:24 2008 +0100
@@ -132,7 +132,7 @@ cross-libpci: $(LIBPCI_STAMPFILE)
$(MAKE) CC="$(CC) $(TARGET_CPPFLAGS) $(TARGET_CFLAGS) -I$(realpath
$(MINI_OS)/include)" lib/libpci.a && \
$(INSTALL_DATA) lib/libpci.a
$(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf/lib/ && \
$(INSTALL_DIR) $(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf/include/pci
&& \
- $(INSTALL_DATA) lib/{config,header,pci,types}.h
$(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf/include/pci/ \
+ $(INSTALL_DATA) lib/config.h lib/header.h lib/pci.h lib/types.h
$(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf/include/pci/ \
)
######
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] stubdom: Fix the Makefile to avoid brace expansion,
Xen patchbot-unstable <=
|
|
|
|
|