jhbuild bootstrap error



When i do jhbuild bootstrap i get this error:

[manuel unix ~]$ jhbuild bootstrap
Traceback (most recent call last):
  File "/usr/bin/jhbuild", line 6, in <module>
    jhbuild.main.main(sys.argv [1:])
  File "/usr/lib/python2.5/site-packages/jhbuild/main.py", line 91, in main
    rc = jhbuild.commands.run(command, config, args)
  File "/usr/lib/python2.5/site-packages/jhbuild/commands/__init__.py", line 74, in run
    return cmd.execute(config, args)
  File "/usr/lib/python2.5/site-packages/jhbuild/commands/__init__.py", line 43, in execute
    return self.run(config, options, args)
  File "/usr/lib/python2.5/site-packages/jhbuild/commands/bootstrap.py", line 35, in run
    module_set = jhbuild.moduleset.load(config, 'bootstrap')
  File "/usr/lib/python2.5/site-packages/jhbuild/moduleset.py", line 183, in load
    ms.modules.update(_parse_module_set(config, uri).modules)
  File "/usr/lib/python2.5/site-packages/jhbuild/moduleset.py", line 211, in _parse_module_set
    document = xml.dom.minidom.parse(filename)
  File "/usr/lib/python2.5/site-packages/_xmlplus/dom/minidom.py", line 1915, in parse
    return expatbuilder.parse(file)
  File "/usr/lib/python2.5/site-packages/_xmlplus/dom/expatbuilder.py", line 924, in parse
    fp = open(file, 'rb')
IOError: [Errno 2] No such file or directory: '/usr/lib/python2.5/site-packages/modulesets/bootstrap.modules'


This is my .jhbuildrc:

[manuel unix ~]$ cat .jhbuildrc
# -*- mode: python -*-

# edit this file to match your settings and copy it to ~/.jhbuildrc

# if you have a GNOME svn account, uncomment this line
#repos['svn.gnome.org'] = 'svn+ssh://user svn gnome org/svn/'
##


# what module set should be used.  The default at the moment is ' gnome-2.16',
# but it can be any of the files in the modulesets directory, or even
# the URL of a module set file on a web server.
#moduleset = 'gnome-2.18.modules'

# A list of the modules to build.  Defaults to the Gnome Desktop and
# developer platform.
#modules = [ 'meta-gnome-desktop' ]

# what directory should the source be checked out to?
checkoutroot = os.path.expanduser('~/checkout/gnome2')

# the prefix to configure/install modules to (must have write access)
prefix = '/home/manuel/jhbuild_dep'

# if you do not want to use system-installed libraries for your builds, comment
# out the lines below
addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', 'lib', 'pkgconfig'))
addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', 'share', 'pkgconfig'))

# extra arguments to pass to all autogen.sh scripts
# to speed up builds of gnome2, try '--disable-static --disable-gtk-doc'
#autogenargs=''

# set CFLAGS:
#os.environ['CFLAGS'] = '-g -O2'

# On SMP systems you may use something like this to improve compilation time:
# be aware that not all modules compile correctly with make -j2
#os.environ['MAKEFLAGS'] = '-j2'

# a alternative install program to use.
# The included install-check program won't update timestamps if the
# header hasn't changed
os.environ['INSTALL'] = os.path.expanduser('~/bin/install-check')

any suggest ?

--
Manuel

[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]