Skip to content

Commit

Permalink
Updating the patch paths in Makefile.sdk and Makefile.fabricv4
Browse files Browse the repository at this point in the history
  • Loading branch information
jkallem-equinix committed Aug 14, 2024
1 parent 7804def commit b4a3fef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.fabricv4
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ patch:

patch-post:
# patch is idempotent, always starting with the generated files
for diff in $(shell find patches/post -name \*.patch | sort -n); do \
for diff in $(shell find patches/services/${PACKAGE_NAME} -name \*.patch | sort -n); do \
patch --no-backup-if-mismatch -N -t -p1 -i $$diff; \
done

Expand Down
2 changes: 1 addition & 1 deletion templates/Makefile.sdk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ patch:

patch-post:
# patch is idempotent, always starting with the generated files
for diff in $(shell find patches/post -name \*.patch | sort -n); do \
for diff in $(shell find patches/services/${PACKAGE_NAME} -name \*.patch | sort -n); do \
patch --no-backup-if-mismatch -N -t -p1 -i $$diff; \
done

Expand Down

0 comments on commit b4a3fef

Please sign in to comment.