summaryrefslogtreecommitdiff
path: root/build.mk
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2022-01-15 18:48:21 +0000
committerMarc Vertes <mvertes@free.fr>2022-01-15 18:48:21 +0000
commitd6a67e794841f6b219b7d65dc964f745b63be6a0 (patch)
treec413c12ebe96216c395075ae3a317965c8097e99 /build.mk
parente96f6e6c4655695b6ba650f792ab34b6eaf9315e (diff)
Do not ignore *.patch files
Diffstat (limited to 'build.mk')
-rw-r--r--build.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.mk b/build.mk
index fce10b0..02b364e 100644
--- a/build.mk
+++ b/build.mk
@@ -38,7 +38,7 @@ uninstall: .install
install: .install
build: .build
configure: .configure
-patch: .patch
+patch: .patched
extract: .extract
fetch: .fetch
@@ -50,11 +50,11 @@ fetch: .fetch
cd $(dir) && $(build_cmd)
@touch $@
-.configure: .patch
+.configure: .patched
cd $(dir) && $(configure_cmd) $(configure_flags)
@touch $@
-.patch: .extract
+.patched: .extract
cd $(dir) && for f in ../*.patch; do patch -p1 < $$f || break; done
@touch $@