Hi Steve, On Samstag, 13. Dezember 2008, Steve Kaiser wrote: > Thanks for helping me. > > 1. I'm using openSUSE 11.0, not Fedora 10: > Welcome to openSUSE 11.0 (i586) - Kernel 2.6.25.18-0.2-pae (1). > > 2. Here's the output of my find --version: > skai...@tesla:~> find --version > find (GNU findutils) 4.4.0 > [...] > skai...@tesla:~> > > Look at the crazy garbage for the GNU gnulib version!
All right, that must fail. Version detection in the configure script depends on a 'version' word in the output. > 3. Any workarounds? My final goal is to get ptxdist ./configure to > successfully complete, so I can move on to building a root filesystem > for this openSUSE system to host via NFS for my phyCORE MPC500B-tiny board. First: Change to ptxdist-1.0.2. Its the last stable release and will also work with your BSP. The configure script of ptxdist-1.0.2 is more "intelligent" and will also find the version number in the output of your find command. I tried sed's regular expression in ptxdist-1.0.2 configure with your find's output: echo "<your whole output>" | sed -ne "s/.*\s\+\([0-9]\+\.[0-9]\+\.[0-9]\+\).*$/\1/p" 4.4.0 Regards, Juergen Beisert -- Pengutronix e.K. | Juergen Beisert | Linux Solutions for Science and Industry | Phone: +49-8766-939 228 | Vertretung Sued/Muenchen, Germany | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | -- ptxdist mailing list [email protected]
