mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 01:22:04 -04:00
932. [bug] Use INSTALL_SCRIPT, not INSTALL_PROGRAM,
when installing isc-config.sh.
[RT #198, #1466]
This commit is contained in:
parent
f72a461c76
commit
5e88852b94
3 changed files with 10 additions and 5 deletions
8
CHANGES
8
CHANGES
|
|
@ -1,6 +1,10 @@
|
|||
|
||||
932. [bug] Use INSTALL_SCRIPT, not INSTALL_PROGRAM,
|
||||
when installing isc-config.sh.
|
||||
[RT #198, #1466]
|
||||
|
||||
931. [bug] The controls statement only attempted to verify
|
||||
messages using the first key in the key list.
|
||||
messages using the first key in the key list.
|
||||
(9.2.0a1/a2 only).
|
||||
|
||||
930. [func] Query performance testing tool added as
|
||||
|
|
@ -9,7 +13,7 @@
|
|||
929. [placeholder]
|
||||
|
||||
928. [bug] nsupdate would send empty update packets if the
|
||||
send (or empty line) command was run after
|
||||
send (or empty line) command was run after
|
||||
another send but before any new updates or
|
||||
prerequisites were specified. It should simply
|
||||
ignore this command.
|
||||
|
|
|
|||
|
|
@ -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.40 2001/07/04 03:37:43 marka Exp $
|
||||
# $Id: Makefile.in,v 1.41 2001/07/13 01:38:49 gson Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
|
@ -40,7 +40,7 @@ installdirs:
|
|||
$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir}
|
||||
|
||||
install:: isc-config.sh installdirs
|
||||
${INSTALL_PROGRAM} isc-config.sh ${DESTDIR}${bindir}
|
||||
${INSTALL_SCRIPT} isc-config.sh ${DESTDIR}${bindir}
|
||||
|
||||
tags:
|
||||
rm -f TAGS
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: rules.in,v 1.38 2001/06/18 17:47:26 gson Exp $
|
||||
# $Id: rules.in,v 1.39 2001/07/13 01:38:51 gson Exp $
|
||||
|
||||
###
|
||||
### Common Makefile rules for BIND 9.
|
||||
|
|
@ -170,6 +170,7 @@ RANLIB = @RANLIB@
|
|||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
###
|
||||
|
|
|
|||
Loading…
Reference in a new issue