#!/bin/sh
#
# getXBinPath - return the bin directory for x programs
#

EXE_LOCATION=`cmdLocation X`

DIR=`dirname $EXE_LOCATION`

echo `deReference $DIR`

