[Gambas-user] Changes in subversion repository
Ron Onstenk
ronstk at ...239...
Wed Sep 27 17:59:29 CEST 2006
On Tuesday 26 September 2006 20:44, Benoit Minisini wrote:
> Hi,
>
> The files that are automatically generated were removed from the repository.
>
> So, now, when you do a checkout for the first time, you have to do a
> './reconf-all' to generate all the configure files, before doing a
> './configure -C'.
>
> Regards,
>
Just won't work.
configure:1766: checking whether make sets $(MAKE)
configure:1786: result: yes
configure:1806: error: cannot run /bin/sh ./config.sub
When I'm right this mean
/bin/sh should execute the script content of config.sub
When I look in trunk/main/config.sub I see:
link ../config.sub
Typing by hand '/bin/sh config.sub' gives
ron at ...1311...:~/src/svn/trunk/main> /bin/sh config.sub
link: too few arguments
Try `link --help' for more information.
ron at ...1311...:~/src/svn/trunk/main> link --help
Usage: link FILE1 FILE2
or: link OPTION
Call the link function to create a link named FILE2 to an existing FILE1.
--help display this help and exit
--version output version information and exit
Report bugs to <bug-coreutils at ...181...>.
On SuSE it wants 'both' parameters ?
ron at ...1311...:~/src/svn/trunk/main> link ../config.sub config.sub.ron
ron at ...1311...:~/src/svn/trunk/main> l config.su*
-rw-r--r-- 1 ron users 18 2006-09-27 17:26 config.sub
-rwxr-xr-x 2 ron users 31552 2006-09-27 17:26 config.sub.ron*
ron at ...1311...:~/src/svn/trunk/main>
ron at ...1311...:~/src/svn/trunk/main> link ../config.sub config.sub
link: cannot create link `config.sub' to `../config.sub': File exists
maybe : (rm ./config.sub;link ../config.sub config.sub) ?
ron at ...1311...:~/src/svn/trunk/main> (rm config.sub;link ../config.sub config.sub)
ron at ...1311...:~/src/svn/trunk/main> l config.su*
-rwxr-xr-x 3 ron users 31552 2006-09-27 17:26 config.sub*
-rwxr-xr-x 3 ron users 31552 2006-09-27 17:26 config.sub.ron*
ron at ...1311...:~/src/svn/trunk/main>
This does work:
(rm ./config.sub;link ../config.sub config.sub)
The second parameter for FILE2 is required (on SuSE)
Ron
More information about the User
mailing list