Trouble with ./bootstrap when building from SVN

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
DennisH
Posts: 4
Joined: Tue Jul 05, 2005 6:51 pm
Location: Berlin, Germany

Trouble with ./bootstrap when building from SVN

Post by DennisH »

I've been trying to build myself a current version of the SDK.
So far I've exported the head revision from SVN, opened Bash (using Cygwin) and tried running the bootstrap script.
According to my understanding it should generate a 'configure' script that I just run and then I can 'make' the libraries. However the 'bootstrap' just returns an error:
FIND: Parameterformat falsch
Which is German for 'wrong parameter format'. The resulting 'configure' script is (of course) 0 bytes long.
Xalcker
Posts: 3
Joined: Thu Jul 07, 2005 2:16 am

Post by Xalcker »

I'm having problems too, using Cygwin after ./bootstrap i get:

aclocal: not found
automake: not found

I've used the cygwin installer to add autoconf and automake.

Any ideas?
mrbrown
Site Admin
Posts: 1537
Joined: Sat Jan 17, 2004 11:24 am

Re: Trouble with ./bootstrap when building from SVN

Post by mrbrown »

DennisH wrote:However the 'bootstrap' just returns an error:
FIND: Parameterformat falsch
Which is German for 'wrong parameter format'. The resulting 'configure' script is (of course) 0 bytes long.
Looks like a non-Cygwin find is on your PATH. Make sure Cygwin (C:\cygwin\bin and C:\cygwin\usr\bin) is the first thing on your PATH.
DennisH
Posts: 4
Joined: Tue Jul 05, 2005 6:51 pm
Location: Berlin, Germany

Post by DennisH »

That's it.
There's a find.exe in the Windows System32 directory. I didn't realise that Bash is using the standard path environment to look for tools, since 'find' is kind of an internal command of the shell. That's where I was obviously wrong. :)
etx
Posts: 33
Joined: Sat Apr 02, 2005 12:54 am
Location: Detroit

Post by etx »

Xalcker wrote:I'm having problems too, using Cygwin after ./bootstrap i get:

aclocal: not found
automake: not found

I've used the cygwin installer to add autoconf and automake.

Any ideas?
You need autoconf and automake, RTFM.
Xalcker
Posts: 3
Joined: Thu Jul 07, 2005 2:16 am

Post by Xalcker »

Thankyou i just reinstalled automake and autoconf from latest source and everything worked.
Post Reply