mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 07:49:59 -04:00
477. [bug] The the isc-config.sh script could be installed before
its directory was created. [RT #324]
This commit is contained in:
parent
a0d172f105
commit
280747fa7c
2 changed files with 10 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
477. [bug] The the isc-config.sh script could be installed before
|
||||
its directory was created. [RT #324]
|
||||
|
||||
476. [bug] A zone could expire while a zone transfer was in
|
||||
progress triggering a INSIST failure. [RT #329]
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.31 2000/09/20 17:51:08 gson Exp $
|
||||
# $Id: Makefile.in,v 1.32 2000/09/20 18:05:33 gson Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
|
@ -31,7 +31,12 @@ distclean::
|
|||
rm -f libtool isc-config.sh
|
||||
rm -f util/conf.sh
|
||||
|
||||
install:: isc-config.sh
|
||||
installdirs:
|
||||
if [ ! -d ${DESTDIR}${bindir} ]; then \
|
||||
mkdir ${DESTDIR}${bindir}; \
|
||||
fi
|
||||
|
||||
install:: isc-config.sh installdirs
|
||||
${INSTALL_PROGRAM} isc-config.sh ${DESTDIR}${bindir}
|
||||
|
||||
tags:
|
||||
|
|
|
|||
Loading…
Reference in a new issue