Package: xball Version: 3.0-15 Severity: serious There was an error while trying to autobuild your package:
> Automatic build of xball_3.0-15 on solitude by sbuild/mipsel 17 > Build started at 20050323-1532 [...] > ** Using build dependencies supplied by package: > Build-Depends: debhelper (>> 4.0.0), lesstif2-dev, xutils, libxmu-dev, > libxt-dev [...] > checking whether gcc accepts -g... yes > checking for ranlib... ranlib > checking for a BSD compatible install... /usr/bin/install -c > updating cache ./config.cache > creating ./config.status > creating Makefile > touch configure-stamp > dh_testdir > /usr/bin/make VERSION=3.0 > make[1]: Entering directory `/build/buildd/xball-3.0' > gcc -DPACKAGE=\"xball\" -DVERSION=\"3.0\" -DMOTIF=HAVE_MOTIF -I. -I. -g > -O2 -c xball.c > cc1: Permission denied: opening dependency file .deps/xball.pp > make[1]: *** [xball.o] Error 1 > make[1]: Leaving directory `/build/buildd/xball-3.0' > make: *** [build-stamp] Error 2 xball fails to build from source because the makefile's "distclean" target ends up creating files (in this case, the .deps directory). Here's the problem rule from Makefile.am: DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :) This causes the directory to be created everytime the makefile is evaluated, no matter what target. deps files are entirely useless in uploaded packages, only adding to the buildd's overhead. You need to at least cause the distclean target to remove this directory. The command that is failing to build, run as a regular user with sudo permissions, is: dpkg-buildpackage -uc -us -B -rsudo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]