From: Damien Neil Date: Thu, 17 Aug 2000 17:39:51 +0000 (+0000) Subject: Install the ISC header files required to get omapi to work. X-Git-Tag: V3-BETA-2-PATCH-1~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61b04b002618a148c82695672219da621f6fe79d;p=thirdparty%2Fdhcp.git Install the ISC header files required to get omapi to work. --- diff --git a/omapip/Makefile.dist b/omapip/Makefile.dist index e7bec5307..b479107b0 100644 --- a/omapip/Makefile.dist +++ b/omapip/Makefile.dist @@ -42,7 +42,7 @@ libomapi.a: $(OBJ) $(RANLIB) libomapi.a install: all - for dir in $(LIBDIR) $(LIBMANDIR) $(INCDIR)/omapip; do \ + for dir in $(LIBDIR) $(LIBMANDIR) $(INCDIR)/omapip $(INCDIR)/isc; do \ foo=""; \ for bar in `echo $(DESTDIR)$${dir} |tr / ' '`; do \ foo=$${foo}/$$bar; \ @@ -58,6 +58,10 @@ install: all $(INSTALL) $(TOP)/includes/omapip/$$file $(DESTDIR)$(INCDIR)/omapip; \ $(CHMOD) 644 $(DESTDIR)$(INCDIR)/omapip/$$file; \ done + for file in boolean.h dst.h int.h lang.h list.h result.h types.h; do \ + $(INSTALL) $(TOP)/includes/isc/$$file $(DESTDIR)$(INCDIR)/isc; \ + $(CHMOD) 644 $(DESTDIR)$(INCDIR)/isc/$$file; \ + done for man in $(MAN); do \ prefix=`echo $$man |sed -e 's/\.[0-9]$$//'`; \ suffix=`echo $$man |sed -e 's/.*\.\([0-9]\)$$/\1/'`; \