aboutsummaryrefslogtreecommitdiffstats
path: root/stubdom
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-08-04 11:15:24 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-08-04 11:15:24 +0100
commit5bab5230292bf93127513f373c227b21500e91af (patch)
tree8b7079a82c6e087558c2271e341506ff9f96a70d /stubdom
parent78665a10dceb3047c80d945d17dd480e1d4ded7a (diff)
downloadxen-5bab5230292bf93127513f373c227b21500e91af.tar.gz
xen-5bab5230292bf93127513f373c227b21500e91af.tar.bz2
xen-5bab5230292bf93127513f373c227b21500e91af.zip
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@ab.jp.nec.com>
Diffstat (limited to 'stubdom')
-rw-r--r--stubdom/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/stubdom/Makefile b/stubdom/Makefile
index db4305f865..0e775d5f75 100644
--- a/stubdom/Makefile
+++ b/stubdom/Makefile
@@ -132,7 +132,7 @@ $(LIBPCI_STAMPFILE): pciutils-$(LIBPCI_VERSION) $(NEWLIB_STAMPFILE) $(ZLIB_STAMP
$(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/ \
)
######