From: Jo-Philipp Wich Date: Sat, 10 Jan 2009 23:12:21 +0000 (+0000) Subject: [x86] Use wildcards to copy grub stage files, will cover both i386-pc and i386-openwr... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=75115686dd9a6d98755aa8616286936016b6a008;ds=sidebyside [x86] Use wildcards to copy grub stage files, will cover both i386-pc and i386-openwrt directory names SVN-Revision: 13963 --- diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index a740b0b63c..4d76639923 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -49,9 +49,9 @@ ifneq ($(HOST_OS),Darwin) define Image/Prepare/grub # for the image builder $(CP) \ - $(STAGING_DIR_HOST)/usr/lib/grub/i386-openwrt/stage1 \ - $(STAGING_DIR_HOST)/usr/lib/grub/i386-openwrt/stage2 \ - $(STAGING_DIR_HOST)/usr/lib/grub/i386-openwrt/e2fs_stage1_5 \ + $(STAGING_DIR_HOST)/usr/lib/grub/i386-*/stage1 \ + $(STAGING_DIR_HOST)/usr/lib/grub/i386-*/stage2 \ + $(STAGING_DIR_HOST)/usr/lib/grub/i386-*/e2fs_stage1_5 \ $(KDIR)/ endef else