summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-22 10:49:46 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-04-22 10:49:46 +0200
commitf0ae9492e826810a3106cd780e64f7a37d6c36ef (patch)
tree6d9d2198a509593f31bbd85f335890fd4bae452d
parentc8b90f42a9ddeb96256994b8c08b92074a2f3df9 (diff)
add more inline doc to our jhbuildrc
-rw-r--r--jhbuildrc11
1 files changed, 10 insertions, 1 deletions
diff --git a/jhbuildrc b/jhbuildrc
index 831c271..98df007 100644
--- a/jhbuildrc
+++ b/jhbuildrc
@@ -13,9 +13,18 @@ moduleset = os.path.join(os.environ['HOME'], 'spice', 'spice-jhbuild', 'modulese
modules = [ 'spice-gtk', 'qemu' ]
-# All modules will be in $HOME/xorg/ after the checkout
+# All module sources will be in $HOME/spice/ after the checkout
checkoutroot = os.path.join(os.environ['HOME'], 'spice')
+# All module binaries will be in $HOME/spice-usr/ after the checkout
prefix = os.path.join(os.environ['HOME'], 'spice-usr')
+
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')
+
+# custom CFLAGS / environment pieces for the build
+# os.environ['CFLAGS'] = '-Wall -g -O0'
+
+# Additional flags for make can be specified here
+# Set makeargs to 'V=1' for verbose build output.
+# makeflags = '-j8'