blob: 3ad64466419650a9d105f44faac1867b9e0e37c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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
|