2973. [bug] bind.keys.h was being removed by the "make clean"

at the end of configure resulting in build failures
                        where there is very old version of perl installed.
                        Move it to "make maintainer-clean". [RT #22230]
This commit is contained in:
Mark Andrews
2010-11-18 23:20:15 +00:00
parent 22f9090a35
commit 5af195d1db
2 changed files with 10 additions and 2 deletions

View File

@@ -13,7 +13,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: Makefile.in,v 1.111 2010/06/20 23:46:44 tbox Exp $
# $Id: Makefile.in,v 1.112 2010/11/18 23:20:15 marka Exp $
srcdir = @srcdir@
VPATH = @srcdir@
@@ -143,7 +143,10 @@ docclean manclean maintainer-clean::
rm -f ${MANOBJS}
clean distclean maintainer-clean::
rm -f ${TARGETS} ${OBJS} bind.keys.h
rm -f ${TARGETS} ${OBJS}
maintainer-clean::
rm -f bind.keys.h
bind9.xsl.h: bind9.xsl ${srcdir}/convertxsl.pl
${PERL} ${srcdir}/convertxsl.pl < ${srcdir}/bind9.xsl > bind9.xsl.h