mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
when dealing with subdirs, do not print messsages if the directory is nulldir
This commit is contained in:
parent
38d2d0e932
commit
e0bcb4f5d4
1 changed files with 2 additions and 2 deletions
|
|
@ -34,15 +34,15 @@ all: ${SUBDIRS} ${TARGETS}
|
|||
ALL_SUBDIRS = ${SUBDIRS} nulldir
|
||||
|
||||
${ALL_SUBDIRS}: FORCE
|
||||
@echo "making all in `pwd`/$@"
|
||||
@if [ "$@" != "nulldir" -a -d $@ ]; then \
|
||||
echo "making all in `pwd`/$@"; \
|
||||
(cd $@; ${MAKE} ${MAKEDEFS} all); \
|
||||
fi
|
||||
|
||||
install depend clean distclean::
|
||||
@for i in ${ALL_SUBDIRS}; do \
|
||||
echo "making $@ in `pwd`/$$i"; \
|
||||
if [ "$$i" != "nulldir" -a -d $$i ]; then \
|
||||
echo "making $@ in `pwd`/$$i"; \
|
||||
(cd $$i; ${MAKE} ${MAKEDEFS} $@); \
|
||||
fi \
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in a new issue