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 | ec5ade1f68571c10cbb1e3df69f917feac81d678 (patch) | |
tree | e47f94f49c06744cf5eaba94b826d9262e835969 | |
parent | a521559027d5e0c665b34808369046e275a6a8f3 (diff) |
catch errors when patching model specific .config files
-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; \ |