[gentoo-x86] / app-arch / lzma-utils / files / lzma-nocxx.sh Project Root:

GentooDiff of /app-arch/lzma-utils/files/lzma-nocxx.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph

version 1.1, Sat May 10 08:35:08 2008 UTC version 1.2, Sat May 10 10:38:41 2008 UTC
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
   
 if [ "$1" = "-dc" ] ; then  case $1 in
           -dc)
         shift          shift
         cat "$@" | lzmadec          cat "$@" | lzmadec
 else                  ;;
           -d)
                   shift
                   lzmadec
                   ;;
           *)
         (          (
         echo "You've built lzma-utils without C++ support."          echo "You've built lzma-utils without C++ support."
         echo "If you want lzma support, rebuild with C++ support."          echo "If you want lzma support, rebuild with C++ support."
         ) 1>&2          ) 1>&2
         exit 1          exit 1
 fi                  ;;
   esac

Generate output suitable for use with a patch program
Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

www@gentoo.org

Powered by ViewCVS 1.0_pre20050929

ViewCVS and CVS Help