> -----BEGIN PGP SIGNED MESSAGE-----
>
> I am trying to get this version of Pine installed. The docs say I need to
> type "build help" to find out the 3 letter code for the platform I want to
> compile on. But, build help only lists a code for Ultrix. Did I d/l the
> wrong source code? The info on the Pine Tech notes web page gives the same
> info as in the docs I have. Anyone have any ideas to get it installed? I
> tried to install from a user account and then tried to install from root.
> "build help" worked ok in the user account but not in root (bash: build:
> command not found - even though I changed permissions to 777 & even tried
> chown to root).
>
I am not familiar with build. However, if build is in the current
directory, and the current directory is not in your path, you can
not run it. Unlike dos, unix systems will not look in the current
directory for a file. It only uses the PATH. In order to get around
this, you can append "." to your PATH variable, to search whatever
directory you are in. the superuser (root) should never have
this in his/her path, as it invites security problems. However,
normal users typically do. the workaround is to use "./build",
rather than "build".
"build" says: execute the first occurrence of the file called
build which you find in my PATH.
"./build" says: execute the first occurence of ./build you find,
which will execute build in your current directory.
Hope this helps,
Bryan Scaringe