mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
Call a global variable in our jhbuildrc _libdir not libdir
jhbuild will complain if there are unknown variables not prefixed with _ in the jhbuildrc, so rename libdir to _libdir.
This commit is contained in:
parent
bd2fecc222
commit
384b88910a
1 changed files with 3 additions and 3 deletions
|
|
@ -30,10 +30,10 @@ prefix = os.path.expanduser('~/gnome-shell/install')
|
|||
|
||||
# Use system libraries for the builds
|
||||
if use_lib64:
|
||||
libdir = 'lib64'
|
||||
_libdir = 'lib64'
|
||||
else:
|
||||
libdir = 'lib'
|
||||
addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', libdir, 'pkgconfig'))
|
||||
_libdir = 'lib'
|
||||
addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', _libdir, 'pkgconfig'))
|
||||
addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', 'share', 'pkgconfig'))
|
||||
|
||||
# Look in /usr/share for icons, D-BUS service files, etc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue