The Following User Says Thank You to verhagke For This Useful Post: | ||
|
2019-11-11
, 15:44
|
|
Posts: 868 |
Thanked: 2,516 times |
Joined on Feb 2012
@ Germany
|
#2
|
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
|
2019-11-12
, 14:15
|
Posts: 48 |
Thanked: 32 times |
Joined on Nov 2009
@ CT
|
#3
|
[sbox-FREMANTLE_X86: ~/projects/hello] > fakeroot apt-get install automake Reading package lists... Done Building dependency tree Reading state information... Done Note, selecting automake1.4 instead of automake The following extra packages will be installed: autoconf automake1.4 autotools-dev m4 Suggested packages: autoconf2.13 autobook autoconf-archive gnu-standards autoconf-doc Recommended packages: automaken The following NEW packages will be installed: autoconf automake1.4 autotools-dev m4 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. Need to get 957kB of archives. After this operation, 3355kB of additional disk space will be used. Do you want to continue [Y/n]? Y WARNING: The following packages cannot be authenticated! m4 autoconf autotools-dev automake1.4 Install these packages without verification [y/N]? y Get:1 http://repository.maemo.org fremantle/sdk/free m4 1.4.8-2 [178kB] Get:2 http://repository.maemo.org fremantle/sdk/free autoconf 2.61-4maemo1+0m5 [451kB] Get:3 http://repository.maemo.org fremantle/sdk/free autotools-dev 20050422.1 [56.7kB] Get:4 http://repository.maemo.org fremantle/sdk/free automake1.4 1:1.4-p6-9 [272kB] Fetched 957kB in 2s (375kB/s) Selecting previously deselected package m4. (Reading database ... 28440 files and directories currently installed.) Unpacking m4 (from .../archives/m4_1.4.8-2_i386.deb) ... Selecting previously deselected package autoconf. Unpacking autoconf (from .../autoconf_2.61-4maemo1+0m5_all.deb) ... Selecting previously deselected package autotools-dev. Unpacking autotools-dev (from .../autotools-dev_20050422.1_all.deb) ... Selecting previously deselected package automake1.4. Unpacking automake1.4 (from .../automake1.4_1%3a1.4-p6-9_all.deb) ... Setting up m4 (1.4.8-2) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package m4 should be updated. Setting up autoconf (2.61-4maemo1+0m5) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package autoconf should be updated. install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package autoconf should be updated. install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package autoconf should be updated. Setting up autotools-dev (20050422.1) ... Setting up automake1.4 (1:1.4-p6-9) ... update-alternatives: using /usr/bin/automake-1.4 to provide /usr/bin/automake (automake) in auto mode. install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package automake1.4 should be updated.
The Following User Says Thank You to verhagke For This Useful Post: | ||
|
2019-11-12
, 16:25
|
|
Posts: 868 |
Thanked: 2,516 times |
Joined on Feb 2012
@ Germany
|
#4
|
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?
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
The Following User Says Thank You to Halftux For This Useful Post: | ||
Tags |
autoreconf, scratchbox |
|
I'm following the packaging tutorial listed on the development wiki http://wiki.maemo.org/Packaging. I am at the point where I am calling autoreconf in a directory where I have the hello.c, configure.ac, and Makefile.am files.
The (autoreconf --force --install) command does not give me any errors, but does not generate anything in that folder.
do I need to call autoconf first? Do I need a different directory structure? Could something be wrong with my scratchbox installation? (I installed scratchbox on my Arch system which seemed to install without any issues)
Thank you
Ken