You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/lzma-utils/files/lzma-nocxx.sh

20 lines
241 B

#!/bin/sh
case $1 in
-dc)
shift
cat "$@" | lzmadec
;;
-d)
shift
lzmadec
;;
*)
(
echo "You've built lzma-utils without C++ support."
echo "If you want lzma support, rebuild with C++ support."
) 1>&2
exit 1
;;
esac