Hi,

On Mon, 11 Sep 2000, joel reed wrote:
> bash-2.04$ libtool --version
> ltmain.sh (GNU libtool) 1.3 (1.385.2.117 1999/04/29 13:07:13)
> 
> the following code from libtool seems to choke on getting the right
> object file name correct for a file like "foo.bar.cpp"
> 
>     # Calculate the filename of the output object if compiler does
>     # not support -o with -c
>     if test "$compiler_c_o" = no; then
>       output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\..*$%%'`.${objext}

This bug also is in the most recent versions, the line above needs to
read:

output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}

May be I should collect all our KDE-patches and submit them ;)


Ciao,
Michael.

Reply via email to