mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Add missing dependencies on Makefile (fixes NO_CLEAN builds).
This commit is contained in:
parent
9227047ec5
commit
edabafcb01
1 changed files with 4 additions and 4 deletions
|
|
@ -27,9 +27,9 @@ WARNS?= 2
|
|||
|
||||
SHLIB_MAJOR= 5
|
||||
|
||||
ftperr.h: ftp.errors
|
||||
ftperr.h: ftp.errors ${.CURDIR}/Makefile
|
||||
@echo "static struct fetcherr ftp_errlist[] = {" > ${.TARGET}
|
||||
@cat ${.ALLSRC} \
|
||||
@cat ${.CURDIR}/ftp.errors \
|
||||
| grep -v ^# \
|
||||
| sort \
|
||||
| while read NUM CAT STRING; do \
|
||||
|
|
@ -38,9 +38,9 @@ ftperr.h: ftp.errors
|
|||
@echo " { -1, FETCH_UNKNOWN, \"Unknown FTP error\" }" >> ${.TARGET}
|
||||
@echo "};" >> ${.TARGET}
|
||||
|
||||
httperr.h: http.errors
|
||||
httperr.h: http.errors ${.CURDIR}/Makefile
|
||||
@echo "static struct fetcherr http_errlist[] = {" > ${.TARGET}
|
||||
@cat ${.ALLSRC} \
|
||||
@cat ${.CURDIR}/http.errors \
|
||||
| grep -v ^# \
|
||||
| sort \
|
||||
| while read NUM CAT STRING; do \
|
||||
|
|
|
|||
Loading…
Reference in a new issue