View Single Post
Halftux's Avatar
Posts: 862 | Thanked: 2,511 times | Joined on Feb 2012 @ Germany
#4
Originally Posted by verhagke View Post
when I then run /usr/bin/autoreconf, it still does not generate anything and completes with no errors. I tried reinstalling everything again and still got the same result. Any thoughts?
That you will get no errors is strange. But try once more because you did not activate the extras repository. The example which I downloaded from archive.org was created with automake 1.10 and the sdk has 1.8.5. I deleted "rm *.in" files and could create new ones with automake 1.10.1.

Using this example here (helloworld_cc-0.5.tar.gz):

https://web.archive.org/web/20121029...omake/automake


Login into scratchbox and:

Code:
echo "deb http://repository.maemo.org/extras/ fremantle free non-free" >> /etc/apt/sources.list
apt-get update
fakeroot apt-get install automake
export SBOX_REDIRECT_IGNORE=/usr/bin/automake:/usr/bin/autoreconf:/usr/bin/aclocal:/usr/bin/autoconf
export AUTOMAKE=/usr/bin/automake
export ACLOCAL=/usr/bin/aclocal
export AUTOCONF=/usr/bin/autoconf
export AUTORECONF=/usr/bin/autoreconf
cd helloworld_cc-0.5
rm *.in
autoreconf --force --install
Here some information how to use automake1.11
https://talk.maemo.org/showthread.php?t=86181
 

The Following User Says Thank You to Halftux For This Useful Post: