From 384b88910a683608ff0cf258a9493b6b5207fcd7 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Tue, 17 Mar 2009 16:09:06 -0400 Subject: [PATCH] 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. --- tools/build/jhbuildrc-gnome-shell | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/build/jhbuildrc-gnome-shell b/tools/build/jhbuildrc-gnome-shell index 19d7891b4..0202977e6 100644 --- a/tools/build/jhbuildrc-gnome-shell +++ b/tools/build/jhbuildrc-gnome-shell @@ -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