Skip to content

Commit

Permalink
docs/libcurl: make portability fix
Browse files Browse the repository at this point in the history
Using $< in a non-suffix rule context is a GNU make idiom.  This bug was
introduced in 7.41.0.
  • Loading branch information
Christian Weisgerber authored and bagder committed Mar 18, 2015
1 parent 252e9ac commit e539f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/libcurl/Makefile.am
Expand Up @@ -94,7 +94,7 @@ MAN2HTML= roffit --mandir=. < $< >$@
SUFFIXES = .3 .html

libcurl-symbols.3: $(srcdir)/symbols-in-versions $(srcdir)/mksymbolsmanpage.pl
perl $(srcdir)/mksymbolsmanpage.pl < $< > $@
perl $(srcdir)/mksymbolsmanpage.pl < $(srcdir)/symbols-in-versions > $@

html: $(HTMLPAGES)
cd opts; make html
Expand Down

0 comments on commit e539f01

Please sign in to comment.