Diff of /app-arch/lzma-utils/files/lzma-nocxx.sh
Parent Directory
|
Revision Log
|
Revision Graph
| version 1.1, Sat May 10 08:35:08 2008 UTC | version 1.2, Sat May 10 10:38:41 2008 UTC | ||
|---|---|---|---|
|
|
||
| #!/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 |
|
||||||||
|
www@gentoo.org Powered by ViewCVS 1.0_pre20050929 |
ViewCVS and CVS Help |