[opensuse-buildservice] Can build local, can't build remote
I am trying to build a package in the build service. I can successfully build the package locally (using osc). But the build fails when trying to build it in the build service. The failure seems to be at this point: test -z "/usr/lib" || mkdir -p -- "/usr/lib" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsynce.la' '/usr/lib/libsynce.la' /usr/bin/install -c .libs/libsynce.so.0.0.0 /usr/lib/libsynce.so.0.0.0 /usr/bin/install: cannot create regular file `/usr/lib/libsynce.so.0.0.0': Permission denied Any ideas? Jared -- Jared Ottley <jared@ottleys.net> http://jared.ottleys.net
Jared Ottley escribió:
I am trying to build a package in the build service. I can successfully build the package locally (using osc). But the build fails when trying to build it in the build service.
The failure seems to be at this point:
test -z "/usr/lib" || mkdir -p -- "/usr/lib" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsynce.la' '/usr/lib/libsynce.la' /usr/bin/install -c .libs/libsynce.so.0.0.0 /usr/lib/libsynce.so.0.0.0 /usr/bin/install: cannot create regular file `/usr/lib/libsynce.so.0.0.0': Permission denied
The buildservice enforces #norootforbuild .. just put that in your spec file and will see the same result.. your package seems to be broken not using DESTDIR during install.
On Sat, 2007-01-06 at 01:26 -0300, Cristian Rodriguez R. wrote:
Jared Ottley escribió:
I am trying to build a package in the build service. I can successfully build the package locally (using osc). But the build fails when trying to build it in the build service.
The failure seems to be at this point:
test -z "/usr/lib" || mkdir -p -- "/usr/lib" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsynce.la' '/usr/lib/libsynce.la' /usr/bin/install -c .libs/libsynce.so.0.0.0 /usr/lib/libsynce.so.0.0.0 /usr/bin/install: cannot create regular file `/usr/lib/libsynce.so.0.0.0': Permission denied
The buildservice enforces #norootforbuild .. just put that in your spec file and will see the same result.. your package seems to be broken not using DESTDIR during install.
Yep. Thank you. Now to get it all fixed up :) Jared --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
participants (2)
-
Cristian Rodriguez R.
-
Jared Ottley