Ralph Chandler wrote:
Hi.
I'm running 10.4.2 with Finks xfree86.
I installed Dillo, and that loads fine. I installed Abiword and get the following output when I try to load it.

mix-lemans-205-2-148:~ ralphchandler$ abiword
/sw/bin/abiword: line 13: launch: command not found
/sw/bin/abiword: line 14: /fink/lib/AbiSuite-2.0/AbiWord-2.0: No such file or directory

Yes, this is broken. You seem to be the first person (apart from the one who broke it, but he has Fink installed in /fink instead of /sw, so he didn't notice) in over a month who tried to actually run abiword :-) . For a quick fix, you can edit /sw/bin/abiword and replace the string "/fink" by "/sw":
[]
mix-lemans-205-2-148:~ ralphchandler$ cat /sw/bin/abiword
#!/bin/sh
# make symlinks in ~/.fonts for applettf .ttf files
# if they are not already there.
Here:
for file in /fink/lib/X11/fonts/applettf/*ttf; do
   if [ ! -d ~/.fonts ]; then
       mkdir ~/.fonts
   fi
   symlink=~/.fonts/`basename $file`
   if [ -f $file ] && [ ! -L $symlink ] && [ ! -f $symlink ] ; then
       ln -s $file $symlink
   fi
done
launch abiword
and here:
/fink/lib/AbiSuite-2.0/AbiWord-2.0 $@
mix-lemans-205-2-148:~ ralphchandler$

I'll fix this on CVS, so that the next update-all will let everyone build a correct version of abiword.

--
Martin



-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
Fink-beginners mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-beginners

Reply via email to