if ! grep -q CONFIGURED $MODULE_CONFIG ; then

  if query "Do you want to use NLS? " y ; then
    OPTS=$OPTS" --enable-nls"
  else
    OPTS=$OPTS" --disable-nls"
  fi

  echo 'CONFIGURED="y"' >> $MODULE_CONFIG
  echo 'OPTS='\"$OPTS\" >> $MODULE_CONFIG
fi
