diff --git a/patches/Makefile b/patches/Makefile index e1c651b2..377b8df7 100644 --- a/patches/Makefile +++ b/patches/Makefile @@ -10,7 +10,7 @@ install: for FILE in $$(ls $$DIR | sort | grep '\.patch$$'); do \ SHORTNAME=$$(echo "$$DIR/$$FILE" | sed 's|$(CURDIR)|\.|g' ); \ printf "Applying patch '$$SHORTNAME'...\n"; \ - $(PATCH) < $$DIR/$$FILE || cat || exit 1; \ + $(PATCH) < $$DIR/$$FILE || exit 1; \ done \ done