mirror of
https://github.com/curl/curl.git
synced 2026-08-25 07:23:31 +03:00
build: Fix theoretical infinite loops
Add error-checking to 'cd' in a few cases where omitting the checks might result in an infinite loop. Closes #535
This commit is contained in:
parent
ff8d352ae9
commit
80562083da
3 changed files with 6 additions and 6 deletions
|
|
@ -45,10 +45,10 @@ MAN2HTML= roffit < $< >$@
|
|||
SUFFIXES = .1 .html .pdf
|
||||
|
||||
html: $(HTMLPAGES)
|
||||
cd libcurl; make html
|
||||
cd libcurl && make html
|
||||
|
||||
pdf: $(PDFPAGES)
|
||||
cd libcurl; make pdf
|
||||
cd libcurl && make pdf
|
||||
|
||||
.1.html:
|
||||
$(MAN2HTML)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue