blob: 350133993f68d85649c8f37e5fa6741ee2382630 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Description: Fix the GNU-isms in Makefile.in.
This is a BSD-specific patch, the upstream source works fine with GNU make.
Author: Vasil Dimov <vd@datamax.bg>
Forwarded: not-needed
Last-Update: 2009-09-10
--- doc/Makefile.in.orig
+++ doc/Makefile.in
@@ -394,13 +394,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:
|