Thursday, April 25, 2024
6
rated 0 times [  6] [ 0]  / answers: 1 / hits: 6177  / 2 Years ago, fri, february 11, 2022, 2:18:04

So, I'm trying to publish my app in my PPA, but I'm having problems related with building my app. Here you have the output:



/bin/sh: 1: glib-compile-schemas: not found
make[1]: *** [override_dh_install] Error 127
make[1]: Leaving directory `/build/buildd/virtuam-0.1ubuntu1'
make: *** [binary] Error 2
dpkg-buildpackage: error: /usr/bin/fakeroot debian/rules binary gave error exit status 2
******************************************************************************
Build finished at 20120709-2102
FAILED [dpkg-buildpackage died]
******************************************************************************


Even following the solutions posted in https://askubuntu.com/questions/156339/launchpad-failed-to-build-after-quickly-submitubuntu, I have no luck. What should I do?



The build error is this: https://launchpadlibrarian.net/109704402/buildlog_ubuntu-precise-i386.virtuam_0.1ubuntu1_FAILEDTOBUILD.txt.gz


More From » application-development

 Answers
2

Your build dependencies are incomplete. From your build log I can see that it tries to install (upgrade) the libglib2.0-0 package. However, glib-compile-schemas is provided by the libglib2.0-bin package which is not a dependency of libglib2.0-0.



To solve this, add libglib2.0-dev as build dependency which will install both libglib2.0-bin and libglib2.0-0.


[#36972] Saturday, February 12, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ideobedi

Total Points: 121
Total Questions: 108
Total Answers: 107

Location: United States Minor Outlying Island
Member since Sat, May 28, 2022
2 Years ago
;