Displaying 1 result from an estimated 1 matches for "script_shel".
Did you mean:
script_shell
2004 Apr 30
0
buildpkg.sh enhancements
...do
eval $confvar=`grep "^$confvar=" Makefile | cut -d = -f 2`
done
@@ -118,6 +129,10 @@
## Extract common info requires for the 'info' part of the package.
VERSION=`./ssh -V 2>&1 | sed -e 's/,.*//'`
+ARCH=`uname -m`
+DEF_MSG="\n"
+OS_VER=`uname -v`
+SCRIPT_SHELL=/sbin/sh
UNAME_S=`uname -s`
case ${UNAME_S} in
SunOS) UNAME_S=Solaris
@@ -125,10 +140,25 @@
RCS_D=yes
DEF_MSG="(default: n)"
;;
- *) ARCH=`uname -m`
- DEF_MSG="\n" ;;
+ SCO_SV) UNAME_S=OpenServer
+ OS_VER=`uname -X | grep Release | sed -e 's/^Rel.*3.2v//'...