diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-09-22 20:23:56 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-09-26 22:18:21 -0500 |
commit | de88aff0a839844526ae262f8961ec4372fed238 (patch) | |
tree | 74c98ab41e7a03456d3c2a52c8cfb2fe3d39b915 /pkgconfig | |
parent | 9e989227ab51cd880405958a0b11c63fa461ea7e (diff) |
Make einfo routines private
The libeinfo library has no consumers other than OpenRC, so there is no
reason for it to be maintained as a library. The einfo routines are now
an object that links with the rc binary.
Diffstat (limited to 'pkgconfig')
-rw-r--r-- | pkgconfig/Makefile | 4 | ||||
-rw-r--r-- | pkgconfig/einfo.pc.in | 9 |
2 files changed, 2 insertions, 11 deletions
diff --git a/pkgconfig/Makefile b/pkgconfig/Makefile index 4bf28cfb..d1dc5507 100644 --- a/pkgconfig/Makefile +++ b/pkgconfig/Makefile @@ -1,6 +1,6 @@ DIR= ${LIBDIR}/pkgconfig -SRCS= einfo.pc.in openrc.pc.in -INC= einfo.pc openrc.pc +SRCS= openrc.pc.in +INC= openrc.pc .DEFAULT: ${SED} -n -e 's/^VERSION=[[:space:]]*\([^[:space:]]*\).*/#define VERSION "\1${GITVER}\"/p' ../../Makefile > version.h diff --git a/pkgconfig/einfo.pc.in b/pkgconfig/einfo.pc.in deleted file mode 100644 index b5242a66..00000000 --- a/pkgconfig/einfo.pc.in +++ /dev/null @@ -1,9 +0,0 @@ -prefix=@PREFIX@ -exec_prefix=${prefix} -libdir=${prefix}/@LIB@ -includedir=/usr/include - -Name: einfo -Description: Pretty console informational display -Version: @VERSION@ -Libs: -L${libdir} -leinfo |