diff options
-rw-r--r-- | lib/Makefile | 1 | ||||
-rw-r--r-- | lib/liblz4.pc.in | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 344120a..45f33e4 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -175,6 +175,7 @@ liblz4.pc: liblz4.pc.in Makefile -e 's|@LIBDIR@|$(libdir)|' \ -e 's|@INCLUDEDIR@|$(includedir)|' \ -e 's|@VERSION@|$(LIBVER)|' \ + -e 's|=${prefix}/|=$${prefix}/|' \ $< >$@ install: lib liblz4.pc diff --git a/lib/liblz4.pc.in b/lib/liblz4.pc.in index 211477f..ed52214 100644 --- a/lib/liblz4.pc.in +++ b/lib/liblz4.pc.in @@ -10,5 +10,5 @@ Name: lz4 Description: extremely fast lossless compression algorithm library URL: http://www.lz4.org/ Version: @VERSION@ -Libs: -L@LIBDIR@ -llz4 -Cflags: -I@INCLUDEDIR@ +Libs: -L${libdir} -llz4 +Cflags: -I${includedir} |