diff options
author | antoine <antoine@FreeBSD.org> | 2014-09-03 23:49:09 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-09-03 23:49:09 +0800 |
commit | b68bc9f00f79e9123ba562703134be7b96886068 (patch) | |
tree | 374af9e9ff3e5f035ac1fca5008a653bef42379c /Mk | |
parent | f5437fcc8bae89049b3468c23bea83a79c542aed (diff) | |
download | freebsd-ports-gnome-b68bc9f00f79e9123ba562703134be7b96886068.tar.gz freebsd-ports-gnome-b68bc9f00f79e9123ba562703134be7b96886068.tar.zst freebsd-ports-gnome-b68bc9f00f79e9123ba562703134be7b96886068.zip |
Fix man pages in ports using python autoplist after MANEXT removal
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/python.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Uses/python.mk b/Mk/Uses/python.mk index df5c2f2698d2..994e0eb31d47 100644 --- a/Mk/Uses/python.mk +++ b/Mk/Uses/python.mk @@ -577,7 +577,7 @@ add-plist-pymod: @${ECHO_CMD} "${_RELLIBDIR}" >> ${WRKDIR}/.localmtree @${SED} -e 's|^${STAGEDIR}${PREFIX}/||' \ -e 's|^${PREFIX}/||' \ - -e 's|^\(man/.*man[0-9]\)/\(.*\.[0-9]\)$$|\1/\2${MANEXT}|' \ + -e 's|^\(man/.*man[0-9]\)/\(.*\.[0-9]\)$$|\1/\2.gz|' \ ${_PYTHONPKGLIST} | ${SORT} >> ${TMPPLIST} @${SED} -e 's|^${STAGEDIR}${PREFIX}/\(.*\)/\(.*\)|\1|' \ -e 's|^${PREFIX}/\(.*\)/\(.*\)|\1|' ${_PYTHONPKGLIST} | \ |