mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 18:10:00 -04:00
make install didn't work when using separate build dir
This commit is contained in:
parent
428b78e56d
commit
fe8d130967
2 changed files with 13 additions and 7 deletions
|
|
@ -13,7 +13,7 @@
|
|||
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
||||
# SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.38 2000/06/22 21:57:22 tale Exp $
|
||||
# $Id: Makefile.in,v 1.39 2000/06/30 00:26:19 gson Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
|
@ -22,14 +22,16 @@ top_srcdir = @top_srcdir@
|
|||
@BIND9_VERSION@
|
||||
|
||||
#
|
||||
# Only list headers that are to be installed!
|
||||
# Only list headers that are to be installed and are not
|
||||
# machine generated. The latter are handled specially in the
|
||||
# install target below.
|
||||
#
|
||||
HEADERS = assertions.h base64.h bitstring.h boolean.h buffer.h \
|
||||
bufferlist.h commandline.h error.h event.h eventclass.h \
|
||||
file.h formatcheck.h fsaccess.h heap.h interfaceiter.h \
|
||||
@ISC_IPV6_H@ lang.h lex.h \
|
||||
lfsr.h lib.h list.h log.h magic.h md5.h mem.h msgcat.h \
|
||||
mutexblock.h netaddr.h ondestroy.h os.h platform.h \
|
||||
mutexblock.h netaddr.h ondestroy.h os.h \
|
||||
print.h quota.h random.h ratelimiter.h region.h \
|
||||
result.h resultclass.h rwlock.h serial.h sha1.h sockaddr.h \
|
||||
socket.h stdio.h string.h symtab.h task.h taskpool.h timer.h \
|
||||
|
|
|
|||
|
|
@ -13,17 +13,19 @@
|
|||
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
||||
# SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.9 2000/06/22 21:59:42 tale Exp $
|
||||
# $Id: Makefile.in,v 1.10 2000/06/30 00:29:29 gson Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
||||
#
|
||||
# Only list headers that are to be installed!
|
||||
# Only list headers that are to be installed and are not
|
||||
# machine generated. The latter are handled specially in the
|
||||
# install target below.
|
||||
#
|
||||
HEADERS = context.h lwbuffer.h lwpacket.h lwres.h netdb.h result.h \
|
||||
int.h lang.h list.h net.h ipv6.h platform.h
|
||||
HEADERS = context.h lwbuffer.h lwpacket.h lwres.h result.h \
|
||||
int.h lang.h list.h net.h ipv6.h
|
||||
|
||||
SUBDIRS =
|
||||
TARGETS =
|
||||
|
|
@ -42,6 +44,8 @@ install:: installdirs
|
|||
for i in ${HEADERS}; do \
|
||||
${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/lwres ; \
|
||||
done
|
||||
${INSTALL_DATA} netdb.h ${DESTDIR}${includedir}/lwres
|
||||
${INSTALL_DATA} platform.h ${DESTDIR}${includedir}/lwres
|
||||
|
||||
distclean::
|
||||
rm -f netdb.h platform.h
|
||||
|
|
|
|||
Loading…
Reference in a new issue