diff options
author | Guillem Jover <guillem@hadrons.org> | 2009-10-23 23:31:07 +0200 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2009-10-24 01:47:26 +0200 |
commit | 5c078ce2f581e1bdfc918326051c587e0cb1d0d6 (patch) | |
tree | 7e37a3537ec3089f2240b6fecf2701b02e84f9e4 /Makefile | |
parent | 614eb0402a2f8f6f16da9e293aa3c5203143fd38 (diff) | |
download | libbsd-5c078ce2f581e1bdfc918326051c587e0cb1d0d6.tar.gz |
Move <bsd/ip_icmp.h> to <bsd/netinet/ip_icmp.h>
This maps more closely the location of the real header. For
transitional purposes keep a <bsd/ip_icmp.h> that warns and includes
<bsd/netinet/ip_icmp.h>.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -46,13 +46,14 @@ LIB_GEN_SRCS := \ LIB_INCLUDES := \ bsd/cdefs.h \ bsd/queue.h \ + bsd/ip_icmp.h \ bsd/sys/cdefs.h \ bsd/sys/queue.h \ bsd/sys/tree.h \ + bsd/netinet/ip_icmp.h \ bsd/err.h \ bsd/getopt.h \ bsd/inet.h \ - bsd/ip_icmp.h \ bsd/random.h \ bsd/md5.h \ bsd/string.h \ @@ -154,6 +155,7 @@ install: libs man mkdir -p $(DESTDIR)$(usrlibdir) mkdir -p $(DESTDIR)$(includedir)/bsd/ mkdir -p $(DESTDIR)$(includedir)/bsd/sys/ + mkdir -p $(DESTDIR)$(includedir)/bsd/netinet/ mkdir -p $(DESTDIR)$(mandir)/man3 mkdir -p $(DESTDIR)$(pkgconfigdir) install -m644 $(LIB_STATIC) $(DESTDIR)$(usrlibdir) |