diff options
author | Fred Fish <fnf@specifix.com> | 1996-09-14 01:40:32 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-09-14 01:40:32 +0000 |
commit | c03e48e87f6ab875e622918ebc6450cdc1b1119f (patch) | |
tree | f96ca99ae4e320272376a209af20cd6bc182510d | |
parent | 1d5eb137043999be02f59c465d7df6f35e0c9f04 (diff) | |
download | gdb-c03e48e87f6ab875e622918ebc6450cdc1b1119f.zip gdb-c03e48e87f6ab875e622918ebc6450cdc1b1119f.tar.gz gdb-c03e48e87f6ab875e622918ebc6450cdc1b1119f.tar.bz2 |
* Makefile.in (just-check): Add path to sibling expect dir
to environment variable specified by RPATH_ENVVAR.
PR 10489 (forgot one path)
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 44f7b75..d956cc7 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +Fri Sep 13 18:16:10 1996 Fred Fish <fnf@cygnus.com> + + * Makefile.in (just-check): Add path to sibling expect dir + to environment variable specified by RPATH_ENVVAR. + Fri Sep 13 12:05:34 1996 Fred Fish <fnf@cygnus.com> * Makefile.in (RPATH_ENVVAR): New var, set to @RPATH_ENVVAR@. diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in index 1e8f2fc..f31b5bb 100644 --- a/gdb/testsuite/Makefile.in +++ b/gdb/testsuite/Makefile.in @@ -122,7 +122,7 @@ just-check: rootme=`pwd`; export rootme; \ srcdir=${srcdir} ; export srcdir ; \ EXPECT=${EXPECT} ; export EXPECT ; \ - $(RPATH_ENVVAR)=$$rootme/../../libstdc++:$$rootme/../../tk/unix:$$rootme/../../tcl/unix:$$rootme/../../bfd:$$rootme/../../opcodes:$$$(RPATH_ENVVAR); \ + $(RPATH_ENVVAR)=$$rootme/../../expect:$$rootme/../../libstdc++:$$rootme/../../tk/unix:$$rootme/../../tcl/unix:$$rootme/../../bfd:$$rootme/../../opcodes:$$$(RPATH_ENVVAR); \ export $(RPATH_ENVVAR); \ if [ -f $${rootme}/../../expect/expect ] ; then \ TCL_LIBRARY=$${srcdir}/../../tcl/library ; \ |