22889169f8
Run configure for drill (I forgot to do it when I imported 1.6.17, but the omission was harmless). Note that running configure --with-drill at the top level doesn't quite work for us since it is geared toward the slightly weird upstream Makefiles, which we don't use.
20 lines
232 B
Bash
Executable File
20 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
set -e
|
|
|
|
ldns=$(dirname $(realpath $0))
|
|
cd $ldns
|
|
|
|
libtoolize --copy
|
|
autoheader
|
|
autoconf
|
|
./configure --prefix= --exec-prefix=/usr
|
|
|
|
cd $ldns/drill
|
|
autoheader
|
|
autoconf
|
|
./configure --prefix= --exec-prefix=/usr
|