From: Keir Fraser Date: Mon, 4 Aug 2008 10:15:24 +0000 (+0100) Subject: stubdom: Fix the Makefile to avoid brace expansion X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14165^2~34 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5bab5230292bf93127513f373c227b21500e91af;p=xen.git 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 --- 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/ \ ) ######