summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2021-06-25 15:31:15 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2021-06-25 15:31:15 +0200
commit4056a722f545b64043e143865102abed61185277 (patch)
treec4edee48f14c460896303db565ca02fcfafe467a
parent5e859e59166c99db8cf2876d94c03d2cfdd15905 (diff)
Makefile: Add missing ';'v0.1.1
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fea947b..f935f74 100644
--- a/Makefile
+++ b/Makefile
@@ -101,9 +101,9 @@ uninstall-doc: $(doc_rm)
$(BIN_DIR)/checkpatch: $(BINDIR)/checkpatch Makefile | builddirs
$(info - SED $@)
<$< >$@ $(SED) \
- -e '\,^my $$V =,s,=.*,= '"'"'$(VERSION)'"'"',' \
- -e '\,^my $$datadir_ =,s,=.*,= '"'"'$(datadir_)'"'"',' \
- -e '\,^my $$docdir_ =,s,=.*,= '"'"'$(docdir_)'"'"','
+ -e '\,^my $$V =,s,=.*,= '"'"'$(VERSION)'"'"';,' \
+ -e '\,^my $$datadir_ =,s,=.*,= '"'"'$(datadir_)'"'"';,' \
+ -e '\,^my $$docdir_ =,s,=.*,= '"'"'$(docdir_)'"'"';,'
builddirs:
$(info - MKDIR builddirs)