[BACK]Return to configure2 CVS log [TXT][DIR] Up to [local] / OpenXM / bin

Diff for /OpenXM/bin/Attic/configure2 between version 1.1 and 1.7

version 1.1, 1999/10/27 10:40:45 version 1.7, 1999/11/07 06:50:00
Line 1 
Line 1 
 #!/bin/bash  #!/bin/sh
 if test "$OSTYPE" = "Linux"  #  $OpenXM: OpenXM/bin/configure2,v 1.6 1999/11/07 06:45:23 takayama Exp $
   if test `uname` = "Linux"
 then  then
   ln -fs ./fep.linux fep  if test -f lin_phcv2p.gz.uuencoded
   ln -fs ./lin_phcv2p phc  then
      uudecode lin_phcv2p.gz.uuencoded
      gunzip lin_phcv2p.gz
      chmod +x lin_phcv2p
   fi
   if test -f fep.linux.gz.uuencoded
   then
      uudecode fep.linux.gz.uuencoded
      gunzip fep.linux.gz
      chmod +x fep.linux
   fi
   fi
   
   if test `uname` = "Linux"
   then
     /bin/rm -f fep phc
     ln -f -s ./fep.linux fep
     ln -f -s ./lin_phcv2p phc
 else  else
   echo "We have the binary of phc only for linux."    echo "We have the binary of phc only for linux."
 fi  fi
   
 ln -fs ../lib/asir/ox_asir asir  /bin/rm -f asir
   ln -f -s ../lib/asir/ox_asir asir
   
   
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.7

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>