]> git.pld-linux.org Git - packages/bind.git/blob - bind9-makefail.patch
- removed pre-9 %%changelog
[packages/bind.git] / bind9-makefail.patch
1 diff -urN bind-9.0.1rc2.org/make/rules.in bind-9.0.1rc2/make/rules.in
2 --- bind-9.0.1rc2.org/make/rules.in     Tue Nov  7 11:04:08 2000
3 +++ bind-9.0.1rc2/make/rules.in Tue Nov  7 16:40:21 2000
4 @@ -65,7 +65,7 @@
5         @for i in ${ALL_SUBDIRS}; do \
6                 if [ "$$i" != "nulldir" -a -d $$i ]; then \
7                         echo "making all in `pwd`/$$i"; \
8 -                       (cd $$i; ${MAKE} ${MAKEDEFS} all); \
9 +                       ${MAKE} -C $$i ${MAKEDEFS} all || exit 1; \
10                 fi \
11         done
12  
13 @@ -73,7 +73,7 @@
14         @for i in ${ALL_SUBDIRS}; do \
15                 if [ "$$i" != "nulldir" -a -d $$i ]; then \
16                         echo "making $@ in `pwd`/$$i"; \
17 -                       (cd $$i; ${MAKE} ${MAKEDEFS} $@); \
18 +                       ${MAKE} -C $$i ${MAKEDEFS} $@ || exit 1; \
19                 fi \
20         done
21  
22 @@ -130,7 +130,7 @@
23         @for i in ${ALL_SUBDIRS}; do \
24                 if [ "$$i" != "nulldir" -a -d $$i ]; then \
25                         echo "making depend in `pwd`/$$i"; \
26 -                       (cd $$i; ${MAKE} ${MAKEDEFS} $@); \
27 +                       ${MAKE} -C $$i ${MAKEDEFS} $@ || exit 1; \
28                 fi \
29         done
30         @if [ X"${SRCS}" != X -a X"${PSRCS}" != X ] ; then \
This page took 0.074814 seconds and 3 git commands to generate.