From 4b4a4ee2d962681c449a6cf62e75e72016d51cf4 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Thu, 15 May 2008 12:51:03 +0200 Subject: [PATCH] Moved the main config file to cf/eval. --- eval/Makefile | 3 +++ eval/ev.sh | 4 ++-- config => eval/eval.cf | 0 3 files changed, 5 insertions(+), 2 deletions(-) rename config => eval/eval.cf (100%) diff --git a/eval/Makefile b/eval/Makefile index 23dc796..ad39641 100644 --- a/eval/Makefile +++ b/eval/Makefile @@ -7,3 +7,6 @@ DATAFILES+=$(o)/eval/libeval.sh $(o)/eval/iwrapper: $(o)/eval/iwrapper.o $(o)/eval/ev: $(s)/eval/ev.sh + +CONFIGS+=eval +run/cf/eval: $(o)/eval/eval.cf diff --git a/eval/ev.sh b/eval/ev.sh index 5750f0b..94c08a3 100755 --- a/eval/ev.sh +++ b/eval/ev.sh @@ -3,12 +3,12 @@ # (c) 2001--2008 Martin Mares set -e -if [ ! -f config -o ! -f lib/libeval.sh ] ; then +if [ ! -f cf/eval -o ! -f lib/libeval.sh ] ; then echo "Unable to find evaluator files!" exit 1 fi . lib/libeval.sh -. config +. cf/eval while parse-cmdline "$1" ; do shift done diff --git a/config b/eval/eval.cf similarity index 100% rename from config rename to eval/eval.cf -- 2.39.2