Check for files in the source directory, not the build directory
authorMichael Meissner <gnu@the-meissners.org>
Sat, 11 Nov 1995 01:11:31 +0000 (01:11 +0000)
committerMichael Meissner <gnu@the-meissners.org>
Sat, 11 Nov 1995 01:11:31 +0000 (01:11 +0000)
sim/ppc/ChangeLog
sim/ppc/configure
sim/ppc/configure.in

index 90d69c6..bf04d99 100644 (file)
@@ -1,5 +1,9 @@
 Fri Nov 10 06:39:46 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
 
+       * configure.in (--enable-sim-{opcode,config}): Use $srcdir when
+       check for the existence of files.
+       * configure: Regenerate.
+
        * table.c (table): New field nr_model_fields.
        (table_open): New parameter nr_model_fields.
        (table_entry_read): Parse model fields that begin with a '*' after
index aaa176b..047100d 100755 (executable)
@@ -486,9 +486,9 @@ enableval="$enable_sim_config"
 if test -n "$enableval"; then
   case "${enableval}" in
   yes|no)      { echo "configure: error: "No value supplied for --enable-sim-config=file"" 1>&2; exit 1; };;
-  *)           if test -f "${enableval}"; then
+  *)           if test -f "${srcdir}/${enableval}"; then
                  sim_config="${enableval}";
-               elif test -f "${enableval}-config.h"; then
+               elif test -f "${srcdir}/${enableval}-config.h"; then
                  sim_config="${enableval}-config.h"
                else
                  { echo "configure: error: "Config file $enableval was not found"" 1>&2; exit 1; };
@@ -510,9 +510,9 @@ enableval="$enable_sim_opcode"
 if test -n "$enableval"; then
   case "${enableval}" in
   yes|no)      { echo "configure: error: "No value supplied for --enable-sim-opcode=file"" 1>&2; exit 1; };;
-  *)           if test -f "${enableval}"; then
+  *)           if test -f "${srcdir}/${enableval}"; then
                  sim_opcode="${enableval}"
-               elif test -f "ppc-opcode-${enableval}"; then
+               elif test -f "${srcdir}/ppc-opcode-${enableval}"; then
                  sim_opcode="ppc-opcode-${enableval}"
                else
                  { echo "configure: error: "File $enableval is not an opcode rules file"" 1>&2; exit 1; };
index 012e040..6ef7afe 100644 (file)
@@ -28,9 +28,9 @@ AC_ARG_ENABLE(sim-config,
 [  --enable-sim-config=file            Override default config file],
 [case "${enableval}" in
   yes|no)      AC_MSG_ERROR("No value supplied for --enable-sim-config=file");;
-  *)           if test -f "${enableval}"; then
+  *)           if test -f "${srcdir}/${enableval}"; then
                  sim_config="${enableval}";
-               elif test -f "${enableval}-config.h"; then
+               elif test -f "${srcdir}/${enableval}-config.h"; then
                  sim_config="${enableval}-config.h"
                else
                  AC_MSG_ERROR("Config file $enableval was not found");
@@ -48,9 +48,9 @@ AC_ARG_ENABLE(sim-opcode,
 [  --enable-sim-opcode=which           Override default opcode lookup.],
 [case "${enableval}" in
   yes|no)      AC_MSG_ERROR("No value supplied for --enable-sim-opcode=file");;
-  *)           if test -f "${enableval}"; then
+  *)           if test -f "${srcdir}/${enableval}"; then
                  sim_opcode="${enableval}"
-               elif test -f "ppc-opcode-${enableval}"; then
+               elif test -f "${srcdir}/ppc-opcode-${enableval}"; then
                  sim_opcode="ppc-opcode-${enableval}"
                else
                  AC_MSG_ERROR("File $enableval is not an opcode rules file");