mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
Do not hardcode paths in pkgconfig file
The pkgconfig file correctly sets $prefix to @prefix@, but the other paths should be relative to $prefix.
This commit is contained in:
parent
05b6c283eb
commit
7e6b60270d
@ -1,14 +1,17 @@
|
||||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
libdir=${exec_prefix}/libdir
|
||||
includedir=${prefix}/include
|
||||
|
||||
apiversion=@CLUTTER_API_VERSION@
|
||||
requires=@CLUTTER_REQUIRES@
|
||||
backend=@CLUTTER_WINSYS@ #only kept for backward compatability
|
||||
winsys=@CLUTTER_WINSYS@
|
||||
soname_infix=@CLUTTER_SONAME_INFIX@
|
||||
cogl=@COGL_DRIVER@ #only kept for backward compatability
|
||||
cogl_driver=@COGL_DRIVER@
|
||||
requires=@CLUTTER_REQUIRES@
|
||||
|
||||
# only kept for backward compatibility
|
||||
cogl=@COGL_DRIVER@
|
||||
backend=@CLUTTER_WINSYS@
|
||||
|
||||
Name: Clutter
|
||||
Description: Clutter Core Library (${winsys}/${cogl_driver} backend)
|
||||
|
Loading…
Reference in New Issue
Block a user