diff options
author | Katze Miau <miaukatzemiau@priveasy.de> | 2011-11-02 10:32:45 (GMT) |
---|---|---|
committer | Katze Miau <miaukatzemiau@priveasy.de> | 2011-11-02 10:32:45 (GMT) |
commit | 653807779fa99c203f8c181444ee310e3a22400c (patch) | |
tree | e47f94f49c06744cf5eaba94b826d9262e835969 /Makefile | |
parent | 5a0b7b21600f93674943ebbbdfdc73a721c06186 (diff) |
catch errors when patching model specific .config files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ config/%.config: $$(shell find config -iname '$$(REPO).config') \ $$(shell find config -iname '$$(REPO)-$$(PLATFORM)-$$(MODEL).patch') cp config/$(REPO).config $@~ if [ -n "$(MODEL)" ]; then \ - patch $@~ <config/$(REPO)-$(PLATFORM).patch; \ + patch $@~ <config/$(REPO)-$(PLATFORM).patch && \ patch $@~ <config/$(REPO)-$(PLATFORM)-$(MODEL).patch; \ else \ patch $@~ <config/$(REPO)-$(PLATFORM).patch; \ |