mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
3d19fa5eda
PR: ports/80238 Submitted by: Vasil Dimov <vd@datamax.bg> Approved by: maintainer timeout (3 months)
20 lines
864 B
Plaintext
20 lines
864 B
Plaintext
--- doc/Makefile.in.orig Fri Apr 22 11:43:32 2005
|
|
+++ doc/Makefile.in Fri Apr 22 11:44:46 2005
|
|
@@ -391,13 +391,13 @@
|
|
mhash-doc: $(dist_targets)
|
|
|
|
$(srcdir)/mhash.html: $(srcdir)/mhash.pod
|
|
- pod2html --noindex --netscape --title="mhash library" $< | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@
|
|
+ pod2html --noindex --netscape --title="mhash library" $(srcdir)/mhash.pod | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@
|
|
|
|
$(srcdir)/mhash.0: $(srcdir)/mhash.3
|
|
- nroff -man $< > $@
|
|
+ nroff -man $(srcdir)/mhash.3 > $@
|
|
|
|
$(srcdir)/mhash.3: $(srcdir)/mhash.pod
|
|
- pod2man $(PODPARAMS) $< | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@
|
|
+ pod2man $(PODPARAMS) $(srcdir)/mhash.pod | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
.NOEXPORT:
|