From 9aabd9d2080b0e229a12cc4375600130b9b35c36 Mon Sep 17 00:00:00 2001 From: Nishi Date: Mon, 23 Sep 2024 18:18:27 +0000 Subject: [PATCH] fix path git-svn-id: file:///raid/svn-personal/tewi/trunk@145 8739d7e6-ffea-ec47-b151-bdff447c6205 --- Makefile | 2 +- Manpage/Makefile | 8 ++++---- Manpage/{tewi.conf.5.tmpl => tewi.8.tmpl} | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename Manpage/{tewi.conf.5.tmpl => tewi.8.tmpl} (100%) diff --git a/Makefile b/Makefile index 45d00eb..77b27c1 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ install: all ./Tool/genconf ./Tool/itworks if [ ! -e $(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(PREFIX)/www/ || ( rm $(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi cp ./Server/tewi $(PREFIX)/bin/ cp ./Module/*.so $(PREFIX)/lib/tewi/ - cp ./Manpage/tewi.conf.5 $(PREFIX)/share/man/man5/ + cp ./Manpage/tewi.8 $(PREFIX)/share/man/man8/ format: clang-format --verbose -i `find ./Server ./Common ./Module ./Tool "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h diff --git a/Manpage/Makefile b/Manpage/Makefile index 51f0bfc..34dbb5f 100644 --- a/Manpage/Makefile +++ b/Manpage/Makefile @@ -2,10 +2,10 @@ .PHONY: all clean -all: tewi.conf.5 +all: tewi.8 -tewi.conf.5: tewi.conf.5.tmpl - sed "s%@PREFIX@%$(PREFIX)%g" tewi.conf.5.tmpl > $@ || rm -f $@ +tewi.8: tewi.8.tmpl + sed "s%@PREFIX@%$(PREFIX)%g" tewi.8.tmpl > $@ || rm -f $@ clean: - rm -f tewi.conf.5 + rm -f tewi.8 diff --git a/Manpage/tewi.conf.5.tmpl b/Manpage/tewi.8.tmpl similarity index 100% rename from Manpage/tewi.conf.5.tmpl rename to Manpage/tewi.8.tmpl -- 2.45.2