Skip to content
Snippets Groups Projects
Commit 770c5cc4 authored by Christopher Spinrath's avatar Christopher Spinrath
Browse files

Fix return value of patch_all

parent 47c28033
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,8 @@ endef
#applies all patches in $1 to target directory $2
define patch_all =
$(foreach p,$(wildcard $1/*),echo "Applying \"$1\" to \"$2\":"; \
cat "$p" | patch -d"$2" -p1; echo "done.";)
$(foreach p,$(wildcard $1/*),echo "Applying \"$1\" to \"$2\":" && \
cat "$p" | patch -d"$2" -p1 && echo "done." && ) true
endef
CASPER_SOURCE_DIR=$(ISO_CONTENT)/casper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment