Diff for /loncom/homework/caparesponse/commands between versions 1.10 and 1.13

version 1.10, 2001/01/17 18:01:31 version 1.13, 2003/04/15 15:48:18
Line 16  then Line 16  then
  then   then
  echo ""   echo ""
  else   else
  ln -s /usr/src/linux/include/asm /usr/include/asm   echo "ERROR. You are missing a necessary symbolic link."
    echo "You should type, as superuser, a command like this:"
                   echo "   ln -s /usr/src/linux/include/asm /usr/include/asm"
    exit 1
  fi   fi
  if test -e /usr/include/linux   if test -e /usr/include/linux
  then   then
  echo ""   echo ""
  else   else
  ln -s /usr/src/linux/include/linux /usr/include/linux   echo "ERROR. You are missing a necessary symbolic link."
    echo "You should type, as superuser, a command like this:"
                   echo "   ln -s /usr/src/linux/include/linux /usr/include/linux"
    exit 1
  fi   fi
 fi  fi
 make -f Makefile clean  if test -f Makefile
   then
    make -f Makefile clean
   fi
 mkdir capaFunctions  mkdir capaFunctions
 path=`pwd`  path=`pwd`
 cd $CAPADIR/pProj  cd $CAPADIR/pProj
Line 33  make ARCH=LONCAPA libcapa Line 42  make ARCH=LONCAPA libcapa
 cd $path  cd $path
 cp $CAPADIR/pProj/LONCAPA/*.o capaFunctions  cp $CAPADIR/pProj/LONCAPA/*.o capaFunctions
 swig -perl5 capa.i   swig -perl5 capa.i 
   dist=`perl ../../build/distprobe`
   if [ $dist = "redhat8" ] 
   then
    cat capa_wrap.c | perl -pe '$_=~s-SWIGEXPORT\(void,boot_capa\)\(CV\* cv\)\;-SWIGEXPORT\(void,boot_capa\)\(pTHX_ CV\* cv\)\;-;' > capa_wrap.c.new
    mv capa_wrap.c.new capa_wrap.c
   fi
 cp Makefile.PL Makefile.pl  cp Makefile.PL Makefile.pl
 perl Makefile.PL   perl Makefile.PL 
 make -f Makefile   make -f Makefile 

Removed from v.1.10  
changed lines
  Added in v.1.13


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