diff options
author | EuAndreh <eu@euandre.org> | 2025-05-15 04:06:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-15 04:07:18 -0300 |
commit | 0d5c1c4d7e703ca23f7836a731185f69b45ca6ad (patch) | |
tree | c3a8aa4140705c3c7818941155bd5b89be7e1797 /Makefile | |
parent | mkdeps.sh: Better name of varlists (diff) | |
download | gotext-0d5c1c4d7e703ca23f7836a731185f69b45ca6ad.tar.gz gotext-0d5c1c4d7e703ca23f7836a731185f69b45ca6ad.tar.xz |
Makefile: Replace mandir(1) with instool(1)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -228,7 +228,7 @@ install: all cp $(NAME).bin '$(DESTDIR)$(BINDIR)'/$(NAME) cp src/$(NAME).a '$(DESTDIR)$(GOLIBDIR)' cp $(sources) '$(DESTDIR)$(SRCDIR)' - mandir install '$(DESTDIR)$(MANDIR)' $(manpages.N) + instool '$(DESTDIR)$(MANDIR)' install man $(manpages.N) ## Uninstalls from $(DESTDIR)$(PREFIX). This is a perfect mirror ## of the "install" target, and removes *all* that was installed. @@ -239,7 +239,7 @@ uninstall: '$(DESTDIR)$(GOLIBDIR)'/$(NAME).a \ '$(DESTDIR)$(SRCDIR)' \ - mandir uninstall '$(DESTDIR)$(MANDIR)' $(manpages.N) + instool '$(DESTDIR)$(MANDIR)' uninstall man $(manpages.N) |