mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't create a garbage file named "install" for the NOINFO case when
there happens to be a source file named install.sh. The null rule for "install" in the NOINFO case must not be completely null, since then it may be overridden by the implicit .sh rule.
This commit is contained in:
parent
ec2f949e2e
commit
395e4e5ab2
1 changed files with 6 additions and 1 deletions
|
|
@ -207,7 +207,12 @@ install: ${INSTALLINFODIRS} _SUBDIR
|
|||
${INFO:S/$/.info.*.html/} ${DESTDIR}${INFODIR}
|
||||
.endif
|
||||
.else
|
||||
install:
|
||||
# The indirection in the following is to avoid the null install rule
|
||||
# "install:" from being overridden by the implicit .sh rule if there
|
||||
# happens to be a source file named install.sh. This assumes that there
|
||||
# is no source file named __null_install.sh.
|
||||
install: __null_install
|
||||
__null_install:
|
||||
.endif
|
||||
|
||||
.if !target(maninstall)
|
||||
|
|
|
|||
Loading…
Reference in a new issue