Am Montag, den 30.07.2007, 16:18 +0200 schrieb Max Giesbert:
> CRITICAL   # org.openoffice.extensions.util.ProjectCreator,line 486:
> /usr/lib/openoffice/sdk/linux/bin/uno-skeletonmaker: 4: basename: not
> found
> /usr/lib/openoffice/sdk/linux/bin/uno-skeletonmaker: 4:
> /usr/lib/openoffice/sdk/linux/bin/.bin: not found
> --->this happened with the Ubuntu SDK
> 
> --->then i changed /usr/lib/openoffice/sdk/linux/bin/uno-skeletonmaker
> from
> 
> #!/bin/sh
> # wrapper script for OOos SDK programs
> 
> LD_LIBRARY_PATH=/usr/lib/openoffice/program
> /usr/lib/openoffice/sdk/linux/bin/`basename $0`.bin "$@"
> 
> --->to
> 
> #!/bin/sh
> # wrapper script for OOos SDK programs
> 
> LD_LIBRARY_PATH=/usr/lib/openoffice/program
> /usr/lib/openoffice/sdk/linux/bin/uno-skeletonmaker.bin "$@"
> 
> 
> Maybe you can enlighten me what exactly went wrong in the first place
> because I don't really get it.

Your distribution or particular installation lacks the program
"basename". You could do a 'locate basename' or if locate isn't in use
search brute force (find / -name "basename"). Maybe only the search path
in the script is not correct for the distribution.

I think basename is one of the most basic helper tools and has to be
part of any Linux or Unix-ish OS ...

Look there for example:
http://www.freebsd.org/cgi/man.cgi?query=basename

HTH,
Marc


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to