diff options
author | seb <seb@pkgsrc.org> | 2003-05-06 23:43:53 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-05-06 23:43:53 +0000 |
commit | ae6b3e4ee2e4376a4fab927c6e0d6d94bd380282 (patch) | |
tree | 3024f4480e69584cdb1a5d127958c0eaf53f31f4 | |
parent | 46a7fd97af205611ec6d5d0c9f8abbf2b059d4e3 (diff) | |
download | pkgsrc-ae6b3e4ee2e4376a4fab927c6e0d6d94bd380282.tar.gz |
TEXINFO_OVERRIDE tweak: '(install-info ' is also a pattern that can be
encountered in Makefile.ins generated by automake.
XXX Hopefully this is going to be the last modification for this
file's avatar.
-rw-r--r-- | mk/texinfo.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/texinfo.mk b/mk/texinfo.mk index b8e9aab90fa..ce0b05cea53 100644 --- a/mk/texinfo.mk +++ b/mk/texinfo.mk @@ -1,4 +1,4 @@ -# $NetBSD: texinfo.mk,v 1.9 2003/02/13 18:51:55 abs Exp $ +# $NetBSD: texinfo.mk,v 1.10 2003/05/06 23:43:53 seb Exp $ # # This Makefile fragment is included by packages that provide info files. # @@ -74,7 +74,7 @@ TEXINFO_SUBST_SED+= -e 's!^MAKEINFO[ ]*=[ ]*makeinfo[ ]*\(.*\)$$!MAKEINFO = $ TEXINFO_SUBST_SED+= -e 's!^INSTALL_INFO[ ]*=[ ]*install-info[ ]*\(.*\)$$!INSTALL_INFO = ${INSTALL_INFO} \1!' # replace bare makeinfo and install-info commands in Makefile target rules TEXINFO_SUBST_SED+= -e "s!^\( .*\)\([ ]\)makeinfo\([ ]\)!\1\2${MAKEINFO}\3!g" -TEXINFO_SUBST_SED+= -e "s!^\( .*\)\([ ']\)install-info\([ ]\)!\1\2${INSTALL_INFO}\3!g" +TEXINFO_SUBST_SED+= -e "s!^\( .*\)\([ '(]\)install-info\([ ]\)!\1\2${INSTALL_INFO}\3!g" _CONFIGURE_PREREQ+= texinfo-override texinfo-override: |