Ashley Maher wrote:

> I am trying to compile a piece of software called "PLUNC", within the
> set up instructions (using tcsh) there is the need to
>  
> set path = (. $UP/bin/'arch -k' $path)

That is almost certainly software designed for Solaris so it can
be compiled for both i386 and Sparc Solaris.

> make install >& install_report
> 
> and peruse the report file, there are lots of errors basically saying
> that 'arch -k' can't be resolved. Some searching has led me to think
> that 'arch -k' is the same as 'uname -m'. But looking around my system
> finds no '/usr/bin/arch', and no 'bin/arch', and on searching the
> repositories no likely candidate for arch to install.

You want a native install. I suggest that you write small shell script
like this:

    #!/bin/bash
    echo

make it exectuable and put it somewhere on your path. With  this,  the
line:

    set path = (. $UP/bin/'arch -k' $path)

which means that "$UP/bin/`arch -k`" gets replaced with "$UP/bin/".

Erik
-- 
-----------------------------------------------------------------
Erik de Castro Lopo
-----------------------------------------------------------------
"Visual SourceSafe?  It would be safer to print out all your
code, run it through a shredder, and set it on fire."
http://www.wadhome.org/svn_vs_vss.txt
_______________________________________________
coders mailing list
coders@slug.org.au
http://lists.slug.org.au/listinfo/coders

Reply via email to