#!/bin/sh

#
# Plase note that nx-X11 constitutes an exception.
# Because of size of the whole package, updates
# are delivered separately.
#

set -x

if [ `uname` = "SunOS" ] ; then
  TAR=gtar
else
  TAR=tar
fi


#
# Make a tar with all updated files
# pertaining to nx-X11.
#

$TAR zcvf nx-X11-XXX-updated.tar.gz `find nx-X11 -name \*.NX.updated`

