diff options
author | jkh <jkh@FreeBSD.org> | 1994-05-19 17:40:01 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-05-19 17:40:01 +0000 |
commit | 25660f4add1befcd5e4c199bb55293b67f1b0576 (patch) | |
tree | 103438e8070c4538dcab888c02f6ae09be64b7af /gnu/lib | |
parent | 2da9c64395efbb90352f2b781db109b172e64440 (diff) | |
download | FreeBSD-src-25660f4add1befcd5e4c199bb55293b67f1b0576.zip FreeBSD-src-25660f4add1befcd5e4c199bb55293b67f1b0576.tar.gz |
A perfectly good libgnuregex.a and you can't use it! No header was being
installed. Do so now as gnuregex.h
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libregex/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/lib/libregex/Makefile b/gnu/lib/libregex/Makefile index ee31734..e50178f 100644 --- a/gnu/lib/libregex/Makefile +++ b/gnu/lib/libregex/Makefile @@ -1,4 +1,4 @@ -# $Header: /a/cvs/386BSD/src/gnu/libregex/Makefile,v 1.5 1993/12/28 07:57:07 smace Exp $ +# $Header: /home/cvs/386BSD/src/gnu/lib/libregex/Makefile,v 1.6 1994/01/29 20:20:51 nate Exp $ SHLIB_MAJOR=1 SHLIB_MINOR=0 @@ -8,4 +8,7 @@ CFLAGS+=-DHAVE_STRING_H=1 SRCS= regex.c NOMAN= noman +afterinstall: + install -c ${.CURDIR}/regex.h ${DESTDIR}/usr/include/gnuregex.h + .include <bsd.lib.mk> |