summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2013-12-17 13:15:17 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2014-03-14 21:17:02 +0000
commitd716c1951637390cfa47f3d32541276850dcb88f (patch)
tree1130b191943fe4aa22285ec44b09a0c58c4fd72c
parent38bfbc174c8098ed9c247ecf4af0242538521228 (diff)
Fix some comments
-rw-r--r--jhbuildrc9
1 files changed, 6 insertions, 3 deletions
diff --git a/jhbuildrc b/jhbuildrc
index 153672f..e1394c2 100644
--- a/jhbuildrc
+++ b/jhbuildrc
@@ -8,7 +8,7 @@ if 'TINDERBOX' in os.environ:
else:
modules = [ 'xwin', 'xorg' ]
-# skip building stuff which isn't appropriate for target
+# skip building stuff which isn't appropriate for Windows target
# skip building all drivers apart from xf86-video-dummy and xf86-video-nested
skip = [ 'appplewmproto', 'libAppleWM',
'videoproto', 'xf86dgaproto', 'xf86driproto', 'xf86vidmodeproto', 'dri2proto',
@@ -61,12 +61,15 @@ build_policy = 'updated-deps'
if 'TINDERBOX' in os.environ:
nopoison = True
-# source checkout, build and install directories
+# All source modules will be here after the checkout
checkoutroot = '/jhbuild/checkout'
+
+# All build takes place here
buildroot = '/jhbuild/build'
+
+# All installed stuff will be here
prefix = '/jhbuild/install'
-# configuration
os.environ['ACLOCAL'] = 'aclocal -I ' + os.path.join(prefix, 'share', 'aclocal')
os.environ['PKG_CONFIG_PATH'] = os.path.join(prefix, 'lib', 'pkgconfig') + ':' + os.path.join(prefix, 'share', 'pkgconfig')
os.environ['CC'] = 'ccache gcc'