0

I am following Jhbuild documentation.

while doing jhbuild sanitycheck I am getting following problem.

root@august:/home/frank/jhbuild# jhbuild sanitycheck
You should not run jhbuild as root.
root@august:/home/frank/jhbuild# exit
logout
frank@august:~/jhbuild$ jhbuild sanitycheck
jhbuild: working directory (/opt/gnome/_jhbuild) can not be created
frank@august:~/jhbuild$ 

How I am supposed to move now ?

Raja G
  • 105,327
  • 107
  • 262
  • 331

1 Answers1

3

Your /opt/gnome directory is not writable by you. either chmod 777 /opt/gnome/ -R or better yet, configure jhbuild to run from your home directory.

If you followed those directions exactly jhbuild would be running as a normal user not as root.

coteyr
  • 18,724