A few comments:<br>first of all: disable the automatic building as long as it does not work. It&#39;s a waste of resources to continue trying it until you have fixed the issues, which is something you can test locally. <br>

<br>The error occurs at:<br><pre>/usr/bin/make real-install<br>make[2]: Entering directory `/build/buildd/grass-7.0.0+0ubuntu2+23027~maverick1&#39;<br>mkdir -p -m 755 /build/buildd/grass-7.0.0+0ubuntu2+23027~maverick1/debian/tmp/usr/lib/grass70<br>

mkdir -p -m 755 /usr/lib/bin<br>mkdir: cannot create directory `/usr/lib/bin&#39;: Permission denied<br>make[2]: *** [/usr/lib/bin] Error 1<br></pre>So you can look down in the makefiles where &#39;real-install&#39; is defined.<br>

that is at line 94:<br><a href="http://bazaar.launchpad.net/~grass/grass/grass_trunk/view/head:/include/Make/Install.make">http://bazaar.launchpad.net/~grass/grass/grass_trunk/view/head:/include/Make/Install.make</a><br>
<pre>
<span class="pyg-n">real</span><span class="pyg-o">-</span><span class="pyg-n">install:</span> <span class="pyg-o">|</span> <span class="pyg-nv">$</span><span class="pyg-err">(</span><span class="pyg-nv">INST_DIR</span><span class="pyg-p">)</span> <span class="pyg-nv">$</span><span class="pyg-err">(</span><span class="pyg-nv">UNIX_BIN</span><span class="pyg-p">)</span><br>

<br></pre>The first one, inst_dir seems to be ok, the second one: unix_bin is not. <br>So try setting that one somewhere in your debian/rules file, like it is currently set for BINDIR<br><br>Johan<br><br><div class="gmail_quote">

On Tue, Mar 8, 2011 at 8:56 AM, Tim Michelsen <span dir="ltr">&lt;<a href="mailto:timmichelsen@gmx-topmail.de">timmichelsen@gmx-topmail.de</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<div class="im"><br>
&gt;&gt; for GRASS 7.0.X<br>
&gt;<br>
&gt; ie trunk (unstable development)<br>
&gt; 7.0.0 is a long way off.<br>
<br>
</div>I know.<br>
But I wanna prepare daily-builds of what`s happening at the development.<br>
<br>
See, for the 6.4.X series I have a automatic daily build:<br>
<br>
<a href="https://launchpad.net/%7Egrass/+archive/grass-stable" target="_blank">https://launchpad.net/~grass/+archive/grass-stable</a><br>
<br>
I would like to expand this to GRASS 7.0<br>
<br>
This would make new features easyly accessible to power users and testers<br>
<div><div></div><div class="h5"><br>
_______________________________________________<br>
UbuntuGIS mailing list<br>
<a href="mailto:Ubuntu@lists.osgeo.org">Ubuntu@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/ubuntu" target="_blank">http://lists.osgeo.org/mailman/listinfo/ubuntu</a><br>
<a href="http://trac.osgeo.org/ubuntugis/wiki" target="_blank">http://trac.osgeo.org/ubuntugis/wiki</a><br>
</div></div></blockquote></div><br>