diff doc/Makefile @ 8822:1027da7d2fb9

doc: fix regexp for determining the man page section Preceding a .* pattern with an other dot serves little purpose, better anchor the regexp to the start of the file name.
author Cédric Duval <cedricduval@free.fr>
date Wed, 10 Jun 2009 19:59:44 +0200
parents e0eb03bfa5af
children 309c1d762e8e
line wrap: on
line diff
--- a/doc/Makefile	Mon Jun 15 20:35:19 2009 -0400
+++ b/doc/Makefile	Wed Jun 10 19:59:44 2009 +0200
@@ -39,7 +39,7 @@
 
 install: man
 	for i in $(MAN) ; do \
-	  subdir=`echo $$i | sed -n 's/..*\.\([0-9]\)$$/man\1/p'` ; \
+	  subdir=`echo $$i | sed -n 's/^.*\.\([0-9]\)$$/man\1/p'` ; \
 	  mkdir -p $(DESTDIR)$(MANDIR)/$$subdir ; \
 	  $(INSTALL) $$i $(DESTDIR)$(MANDIR)/$$subdir ; \
 	done