Skip to content

Commit ae4cc61

Browse files
committed
Uninstall man pages during make uninstall
1 parent b9b78ab commit ae4cc61

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

ChangeLog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
OpenVi 7.0.6 -> OpenVi 7.0.7-dev (Unreleased): Fri Jan 28 14:19:13 2022
1+
OpenVi 7.0.6 -> OpenVi 7.0.7: Fri Jan 28 16:33:22 2022
22
+ Important fix to `GNUmakefile` for linking with Clang's `lld` linker
3+
+ Remove installed man pages as part of the `uninstall` target
34
+ Workaround to accommodate the case of `make clean all -j N' when `N` > 1
45
+ Clean-up whitespace and line lengths of sources and `GNUmakefile`
56

GNUmakefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,4 +486,23 @@ ifndef DEBUG
486486
endif # DEBUG
487487
-@$(VERBOSE); $(RMF) "$(PREFIX)/bin/$(BINPREFIX)view$(BINSUFFIX)"
488488

489+
ifndef DEBUG
490+
-@$(PRINTF) "\t$(RM):\t%s\n" \
491+
"$(PREFIX)/share/man/man1/$(BINPREFIX)vi$(BINSUFFIX).1"
492+
endif # DEBUG
493+
-@$(VERBOSE); $(RMF) \
494+
"$(PREFIX)/share/man/man1/$(BINPREFIX)vi$(BINSUFFIX).1"
495+
ifndef DEBUG
496+
-@$(PRINTF) "\t$(RM):\t%s\n" \
497+
"$(PREFIX)/share/man/man1/$(BINPREFIX)ex$(BINSUFFIX).1"
498+
endif # DEBUG
499+
-@$(VERBOSE); $(RMF) \
500+
"$(PREFIX)/share/man/man1/$(BINPREFIX)ex$(BINSUFFIX).1"
501+
ifndef DEBUG
502+
-@$(PRINTF) "\t$(RM):\t%s\n" \
503+
"$(PREFIX)/share/man/man1/$(BINPREFIX)view$(BINSUFFIX).1"
504+
endif # DEBUG
505+
-@$(VERBOSE); $(RMF) \
506+
"$(PREFIX)/share/man/man1/$(BINPREFIX)view$(BINSUFFIX).1"
507+
489508
###############################################################################

ex/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
#define _VERSION_H
3636

3737
#define VI_VERSION \
38-
"Version 7.0.7-dev (OpenVi) 10/25/2021"
38+
"Version 7.0.7 (OpenVi) 10/25/2021"
3939

4040
#endif /* ifndef _VERSION_H */

0 commit comments

Comments
 (0)