|
Gregory (Grisha) Trubetskoy
grisha at modpython.org
Thu Jan 9 23:30:09 EST 2003
On Fri, 10 Jan 2003, Connie Baggs wrote:
> Insufficient arguments
> Usage: ln [-fis] file1 file2
> ln [-fis] file1 ... file2 dir
> *** Error code 2 (bu21)
> *** Error code 1 (bu21)
>
> Any ideas on what is wrong?
Interesting.... Is this IRIX by any chance? I have no access to an SGI
machine to test this, but it looks like ln needs two arguments and so the
args in src/Makefile are wrong. Try finding a line in src/Makefile that
looks like:
@ln -s .libs/mod_python.so
and change it to
@ln -s .libs/mod_python.so mod_python.so
then rerun make.
Grisha
|