#!/bin/sh
# $Id: dcc,v 1.3 2003/11/10 06:16:25 cher Exp $
# Copyright (c) 2003 Alexander Chernov

# Borland Kylix is installed at non-standard location
KYLIXDIR=/usr/local/pkg/kylix3

DCCRUN=dcc
if [ "${KYLIXDIR}" != "" ]
then
    PATH=${KYLIXDIR}/bin:${PATH}
    DCCRUN=${KYLIXDIR}/bin/${DCCRUN}
fi

exec ${DCCRUN} -$I+,Q-,R-,X+ -Q $1
