diff options
| author | Marc Vertes <mvertes@free.fr> | 2022-01-15 18:48:21 +0000 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2022-01-15 18:48:21 +0000 |
| commit | d6a67e794841f6b219b7d65dc964f745b63be6a0 (patch) | |
| tree | c413c12ebe96216c395075ae3a317965c8097e99 /build.mk | |
| parent | e96f6e6c4655695b6ba650f792ab34b6eaf9315e (diff) | |
Do not ignore *.patch files
Diffstat (limited to 'build.mk')
| -rw-r--r-- | build.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 $@ |
