#!/bin/sh
# xz
# Wrapper for lzma to implement missing switches.

XZ=/usr/bin/xz

case "${1}" in
--help)
   ${XZ} --help
   # This needs to exit successfully.
   exit 0
   ;;
esac

${XZ} "$@"
exit $?
