diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-09-06 09:41:47 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-09-06 09:41:47 +0000 |
commit | 56c6e473560d429ee78ad437629ead36bdbe29a8 (patch) | |
tree | a5533d0926461e4b294c26e3d54d2206b1252f5c /devel/imake-4 | |
parent | 10199b5dbd270f7b25bd189aa817a635d2195b9a (diff) | |
download | ports-56c6e473560d429ee78ad437629ead36bdbe29a8.tar.gz ports-56c6e473560d429ee78ad437629ead36bdbe29a8.zip |
Work around bug (?) in BSD make that causes HTML manpages to be generated
with wrong suffix when MANSUFFIX is defined.
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=32330
Diffstat (limited to 'devel/imake-4')
-rw-r--r-- | devel/imake-4/files/patch-h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/devel/imake-4/files/patch-h b/devel/imake-4/files/patch-h index 5402148c0b11..c33c3c04b737 100644 --- a/devel/imake-4/files/patch-h +++ b/devel/imake-4/files/patch-h @@ -1,5 +1,16 @@ --- cf/Imake.rules.orig Sun Jun 18 03:39:14 2000 -+++ cf/Imake.rules Sun Jul 16 18:47:58 2000 ++++ cf/Imake.rules Fri Sep 1 13:33:50 2000 +@@ -1297,8 +1297,8 @@ + @@\ + dest.suffix.html: file.man RmanCmdDependency @@\ + RemoveFiles(dest.suffix.html dest.suffix-html) @@\ +- RunProgram(RMAN,$(RMANOPTIONS) < file.man > dest.suffix-html) &&\ @@\ +- $(MV) dest.suffix-html $@ @@\ ++ RunProgram(RMAN,$(RMANOPTIONS) < file.man > dest.suffix-html) && \ @@\ ++ $(MV) dest.suffix-html dest.suffix.html @@\ + @@\ + install.man:: dest.suffix.html @@\ + MakeDir($(DESTDIR)$(DOCHTMLDIR)) @@\ @@ -1533,7 +1533,7 @@ MakeDir(Concat($(DESTDIR),npath/mdir)) @@\ @MakeFlagsToShellFlags(i,set +e); \ @@\ |