diff options
| author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-01 19:19:57 +0000 |
|---|---|---|
| committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-01 19:19:57 +0000 |
| commit | a0844d0b2adf3473c349db54ab230588c4422551 (patch) | |
| tree | 551c73971b9e11f2607fc4f1365c0884c54e1100 | |
| parent | 13487a5ef4e62b2ad9a1836e7826c648d61b26b3 (diff) | |
| download | ppe42-gcc-a0844d0b2adf3473c349db54ab230588c4422551.tar.gz ppe42-gcc-a0844d0b2adf3473c349db54ab230588c4422551.zip | |
* tests_flags.in: Use test a = b, not test a == b which is not
portable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40986 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
| -rw-r--r-- | libstdc++-v3/tests_flags.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 395ef5bbb12..c925a6c91e5 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-04-01 Zack Weinberg <zackw@stanford.edu> + + * tests_flags.in: Use test a = b, not test a == b which is not + portable. + 2001-03-31 Benjamin Kosnik <bkoz@redhat.com> * configure.target: Remove duplicate aix entry. diff --git a/libstdc++-v3/tests_flags.in b/libstdc++-v3/tests_flags.in index d20bba1a926..616a748d1aa 100644 --- a/libstdc++-v3/tests_flags.in +++ b/libstdc++-v3/tests_flags.in @@ -108,7 +108,7 @@ case ${query} in -I${SRC_DIR}/include/std -I${SRC_DIR}/include/$C_DIR -I${SRC_DIR}/libsupc++ -I${SRC_DIR}/libio -I${SRC_DIR}/testsuite" - if test x@xcompiling@ == x1; then + if test x@xcompiling@ = x1; then INCLUDES="${INCLUDES} -I${SRC_DIR}/../newlib/libc/include" fi ;; |

