diff options
author | Jory A. Pratt <anarchy@gentoo.org> | 2010-08-22 15:05:11 -0500 |
---|---|---|
committer | Jory A. Pratt <anarchy@gentoo.org> | 2010-08-22 15:05:11 -0500 |
commit | b232e529f191369207ddf03570a4267950cc1ce7 (patch) | |
tree | bf4deb5376980f10492da483ff553d3f4642891f /pkgconfig | |
parent | ae3186834f6fd24460995f7ca9af200e35146b24 (diff) |
Fix for make-3.82 breakage.
Diffstat (limited to 'pkgconfig')
-rw-r--r-- | pkgconfig/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgconfig/Makefile b/pkgconfig/Makefile index cdcf8be8..4bf28cfb 100644 --- a/pkgconfig/Makefile +++ b/pkgconfig/Makefile @@ -2,7 +2,8 @@ DIR= ${LIBDIR}/pkgconfig SRCS= einfo.pc.in openrc.pc.in INC= einfo.pc openrc.pc -sed -n -e 's/^VERSION=[[:space:]]*\([^[:space:]]*\).*/#define VERSION "\1${GITVER}\"/p' ../../Makefile > version.h +.DEFAULT: + ${SED} -n -e 's/^VERSION=[[:space:]]*\([^[:space:]]*\).*/#define VERSION "\1${GITVER}\"/p' ../../Makefile > version.h SED_EXTRA= -e 's:@VERSION@:${VERSION}:g' |