aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul A. Patience <paul@apatience.com>2022-07-04 04:28:42 +0000
committerKaz Kylheku <kaz@kylheku.com>2022-07-04 08:26:53 -0700
commit4c2f1036592e778cc76efaf3e73434916c4f9285 (patch)
tree05f1d9f727be2b161592fd7fa81e96a095a43ac9
parent256d7c17e9269f82a8f006dc50308d7934b93ce3 (diff)
downloadpw-4c2f1036592e778cc76efaf3e73434916c4f9285.tar.gz
pw-4c2f1036592e778cc76efaf3e73434916c4f9285.tar.bz2
pw-4c2f1036592e778cc76efaf3e73434916c4f9285.zip
Add missing semicolon in Makefile install target.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9e16dab..23e9477 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ all: pw fixver
pw:
clean:; rm -f pw
install:; install pw $(DESTDIR)/bin/pw; \
- install pw.1 $(DESTDIR)/share/man/man1 \
+ install pw.1 $(DESTDIR)/share/man/man1; \
install pw-relnotes.5 $(DESTDIR)/share/man/man5
define FIXVER
sed -e '/^\.TH/s/Version [^"]\+/Version $(PW_VERSION)/' $1 > pw.tmp ;