diff options
author | asami <asami@FreeBSD.org> | 2000-09-06 09:41:47 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-09-06 09:41:47 +0000 |
commit | 25ce006ff896b9572c402de77c9f26c8a077e1f4 (patch) | |
tree | e5f466b4ca738e52d90fef76fb98fee05dcc97a0 /devel/imake-4 | |
parent | a3df2dfa1a5f255de6d0cc5d3540a6c2d4633567 (diff) | |
download | FreeBSD-ports-25ce006ff896b9572c402de77c9f26c8a077e1f4.zip FreeBSD-ports-25ce006ff896b9572c402de77c9f26c8a077e1f4.tar.gz |
Work around bug (?) in BSD make that causes HTML manpages to be generated
with wrong suffix when MANSUFFIX is defined.
Submitted by: maintainer
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 5402148..c33c3c0 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); \ @@\ |