Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
5519212a
Commit
5519212a
authored
Sep 03, 2018
by
Ondřej Surý
Browse files
Merge branch 'fail-on-failed-install-v9_12-v9_11' into 'v9_11'
Fail on failed install inside for loops See merge request
!754
parents
a94ae94f
302cae89
Pipeline
#4610
passed with stages
in 7 minutes and 14 seconds
Changes
31
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bin/check/Makefile.in
View file @
5519212a
...
...
@@ -87,12 +87,12 @@ install:: named-checkconf@EXEEXT@ named-checkzone@EXEEXT@ installdirs
${LIBTOOL_MODE_INSTALL}
${INSTALL_PROGRAM}
named-checkconf@EXEEXT@
${DESTDIR}${sbindir}
${LIBTOOL_MODE_INSTALL}
${INSTALL_PROGRAM}
named-checkzone@EXEEXT@
${DESTDIR}${sbindir}
(
cd
${DESTDIR}${sbindir}
;
rm
-f
named-compilezone@EXEEXT@
;
${LINK_PROGRAM}
named-checkzone@EXEEXT@ named-compilezone@EXEEXT@
)
for
m
in
${MANPAGES}
;
do
${INSTALL_DATA}
${srcdir}
/
$$
m
${DESTDIR}${mandir}
/man8
;
done
for
m
in
${MANPAGES}
;
do
${INSTALL_DATA}
${srcdir}
/
$$
m
${DESTDIR}${mandir}
/man8
||
exit
1
;
done
(
cd
${DESTDIR}${mandir}
/man8
;
rm
-f
named-compilezone.8
;
${LINK_PROGRAM}
named-checkzone.8 named-compilezone.8
)
uninstall
::
rm
-f
${DESTDIR}${mandir}
/man8/named-compilezone.8
for
m
in
${MANPAGES}
;
do
rm
-f
${DESTDIR}${mandir}
/man8/
$$
m
;
done
for
m
in
${MANPAGES}
;
do
rm
-f
${DESTDIR}${mandir}
/man8/
$$
m
||
exit
1
;
done
rm
-f
${DESTDIR}${sbindir}
/named-compilezone@EXEEXT@
${LIBTOOL_MODE_UNINSTALL}
rm
-f
${DESTDIR}${sbindir}
/named-checkconf@EXEEXT@
${LIBTOOL_MODE_UNINSTALL}
rm
-f
${DESTDIR}${sbindir}
/named-checkzone@EXEEXT@
...
...
bin/dig/Makefile.in
View file @
5519212a
...
...
@@ -99,12 +99,12 @@ install:: dig@EXEEXT@ host@EXEEXT@ nslookup@EXEEXT@ installdirs
${LIBTOOL_MODE_INSTALL}
${INSTALL_PROGRAM}
\
nslookup@EXEEXT@
${DESTDIR}${bindir}
for
m
in
${MANPAGES}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
m
${DESTDIR}${mandir}
/man1
;
\
done
${INSTALL_DATA}
${srcdir}
/
$$
m
${DESTDIR}${mandir}
/man1
||
exit
1
;
\
done
uninstall
::
for
m
in
${MANPAGES}
;
do
\
rm
-f
${DESTDIR}${mandir}
/man1/
$$
m
;
\
rm
-f
${DESTDIR}${mandir}
/man1/
$$
m
||
exit
1
;
\
done
${LIBTOOL_MODE_UNINSTALL}
rm
-f
${DESTDIR}${bindir}
/nslookup@EXEEXT@
${LIBTOOL_MODE_UNINSTALL}
rm
-f
${DESTDIR}${bindir}
/host@EXEEXT@
...
...
bin/dnssec/Makefile.in
View file @
5519212a
...
...
@@ -111,12 +111,12 @@ installdirs:
$(SHELL)
${top_srcdir}
/mkinstalldirs
${DESTDIR}${mandir}
/man8
install
::
${TARGETS} installdirs
for
t
in
${TARGETS}
;
do
${LIBTOOL_MODE_INSTALL}
${INSTALL_PROGRAM}
$$
t
${DESTDIR}${sbindir}
;
done
for
m
in
${MANPAGES}
;
do
${INSTALL_DATA}
${srcdir}
/
$$
m
${DESTDIR}${mandir}
/man8
;
done
for
t
in
${TARGETS}
;
do
${LIBTOOL_MODE_INSTALL}
${INSTALL_PROGRAM}
$$
t
${DESTDIR}${sbindir}
||
exit
1
;
done
for
m
in
${MANPAGES}
;
do
${INSTALL_DATA}
${srcdir}
/
$$
m
${DESTDIR}${mandir}
/man8
||
exit
1
;
done
uninstall
::
for
m
in
${MANPAGES}
;
do
rm
-f
${DESTDIR}${mandir}
/man8/
$$
m
;
done
for
t
in
${TARGETS}
;
do
${LIBTOOL_MODE_UNINSTALL}
rm
-f
${DESTDIR}${sbindir}
/
$$
t
;
done
for
m
in
${MANPAGES}
;
do
rm
-f
${DESTDIR}${mandir}
/man8/
$$
m
||
exit
1
;
done
for
t
in
${TARGETS}
;
do
${LIBTOOL_MODE_UNINSTALL}
rm
-f
${DESTDIR}${sbindir}
/
$$
t
||
exit
1
;
done
clean distclean
::
rm
-f
${TARGETS}
...
...
lib/bind9/include/bind9/Makefile.in
View file @
5519212a
...
...
@@ -30,10 +30,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/bind9
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/bind9
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/bind9/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/bind9/
$$
i
||
exit
1
;
\
done
lib/dns/include/dns/Makefile.in
View file @
5519212a
...
...
@@ -45,16 +45,16 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/dns
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/dns
||
exit
1
;
\
done
for
i
in
${GENHEADERS}
;
do
\
${INSTALL_DATA}
$$
i
${DESTDIR}${includedir}
/dns
;
\
${INSTALL_DATA}
$$
i
${DESTDIR}${includedir}
/dns
||
exit
1
;
\
done
uninstall
::
for
i
in
${GENHEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/dns/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/dns/
$$
i
||
exit
1
;
\
done
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/dns/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/dns/
$$
i
||
exit
1
;
\
done
lib/dns/include/dst/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/dst
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/dst
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/dst/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/dst/
$$
i
||
exit
1
;
\
done
lib/irs/include/irs/Makefile.in
View file @
5519212a
...
...
@@ -28,7 +28,7 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/irs
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/irs
||
exit
1
;
\
done
${INSTALL_DATA}
netdb.h
${DESTDIR}${includedir}
/irs
${INSTALL_DATA}
platform.h
${DESTDIR}${includedir}
/irs
...
...
@@ -37,7 +37,7 @@ uninstall::
rm
-f
${DESTDIR}${includedir}
/irs/platform.h
rm
-f
${DESTDIR}${includedir}
/irs/netdb.h
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/irs/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/irs/
$$
i
||
exit
1
;
\
done
distclean
::
...
...
lib/irs/win32/include/irs/Makefile.in
View file @
5519212a
...
...
@@ -22,5 +22,5 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/irs
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/irs
||
exit
1
;
\
done
lib/isc/alpha/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
lib/isc/ia64/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
lib/isc/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -45,14 +45,14 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
${INSTALL_DATA}
platform.h
${DESTDIR}${includedir}
/isc
uninstall
::
rm
-f
${DESTDIR}${includedir}
/isc/platform.h
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
distclean
::
...
...
lib/isc/include/pk11/Makefile.in
View file @
5519212a
...
...
@@ -29,10 +29,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/pk11
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/pk11
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/pk11/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/pk11/
$$
i
||
exit
1
;
\
done
lib/isc/include/pkcs11/Makefile.in
View file @
5519212a
...
...
@@ -29,10 +29,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/pkcs11
;
\
${INSTALL_DATA}
${srcdir}
/
$$
i
${DESTDIR}${includedir}
/pkcs11
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/pkcs11/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/pkcs11/
$$
i
||
exit
1
;
\
done
lib/isc/mips/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
lib/isc/noatomic/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
lib/isc/nothreads/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
lib/isc/powerpc/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
lib/isc/pthreads/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,10 +25,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
lib/isc/sparc64/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -25,5 +25,5 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
lib/isc/unix/include/isc/Makefile.in
View file @
5519212a
...
...
@@ -26,10 +26,10 @@ installdirs:
install
::
installdirs
for
i
in
${HEADERS}
;
do
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
;
\
${INSTALL_DATA}
$(srcdir)
/
$$
i
${DESTDIR}${includedir}
/isc
||
exit
1
;
\
done
uninstall
::
for
i
in
${HEADERS}
;
do
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
;
\
rm
-f
${DESTDIR}${includedir}
/isc/
$$
i
||
exit
1
;
\
done
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment