477. [bug] The the isc-config.sh script could be installed before

its directory was created. [RT #324]
This commit is contained in:
Andreas Gustafsson 2000-09-20 18:05:33 +00:00
parent a0d172f105
commit 280747fa7c
2 changed files with 10 additions and 2 deletions

View file

@ -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]

View file

@ -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: