diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-04-23 14:52:38 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-04-23 14:52:38 +0000 |
commit | d8dcacdab1e3c661569c83b875c91816c1359b20 (patch) | |
tree | 2a8a6622a2fc12d5cc45b499e3a61c7d36580b84 /target/u-boot/Makefile.in | |
parent | a40d635ec011bb630fe48fbefe4b54ebae8a65a3 (diff) | |
download | buildroot-novena-d8dcacdab1e3c661569c83b875c91816c1359b20.tar.gz buildroot-novena-d8dcacdab1e3c661569c83b875c91816c1359b20.zip |
u-boot: support platform-independent patches
Support platform independent patches (.patch) and use .patch.$ARCH for
platform dependent ones like elsewhere.
Diffstat (limited to 'target/u-boot/Makefile.in')
-rw-r--r-- | target/u-boot/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/u-boot/Makefile.in b/target/u-boot/Makefile.in index 005d935c6..6ba5c0f10 100644 --- a/target/u-boot/Makefile.in +++ b/target/u-boot/Makefile.in @@ -47,7 +47,8 @@ $(U_BOOT_DIR)/.unpacked: $(DL_DIR)/$(U_BOOT_SOURCE) $(U_BOOT_DIR)/.patched: $(U_BOOT_DIR)/.unpacked toolchain/patch-kernel.sh $(U_BOOT_DIR) target/u-boot/ \ - u-boot-$(U_BOOT_VERSION)-$(BR2_ARCH)-\*.patch\* + u-boot-$(U_BOOT_VERSION)-\*.patch \ + u-boot-$(U_BOOT_VERSION)-\*.patch.$(ARCH) ifneq ($(strip $(BR2_TARGET_UBOOT_CUSTOM_PATCH)),"") @mkdir -p $(U_BOOT_PATCH_DIR) cp -dpr $(BR2_TARGET_UBOOT_CUSTOM_PATCH) $(U_BOOT_PATCH_DIR) |