tests_flags.in: Use test a = b, not test a == b which is not portable.
* tests_flags.in: Use test a = b, not test a == b which is not portable. From-SVN: r40986
This commit is contained in:
parent
f404754042
commit
aa9de837a8
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2001-03-31 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
* configure.target: Remove duplicate aix entry.
|
* configure.target: Remove duplicate aix entry.
|
||||||
|
|
|
@ -108,7 +108,7 @@ case ${query} in
|
||||||
-I${SRC_DIR}/include/std -I${SRC_DIR}/include/$C_DIR
|
-I${SRC_DIR}/include/std -I${SRC_DIR}/include/$C_DIR
|
||||||
-I${SRC_DIR}/libsupc++ -I${SRC_DIR}/libio
|
-I${SRC_DIR}/libsupc++ -I${SRC_DIR}/libio
|
||||||
-I${SRC_DIR}/testsuite"
|
-I${SRC_DIR}/testsuite"
|
||||||
if test x@xcompiling@ == x1; then
|
if test x@xcompiling@ = x1; then
|
||||||
INCLUDES="${INCLUDES} -I${SRC_DIR}/../newlib/libc/include"
|
INCLUDES="${INCLUDES} -I${SRC_DIR}/../newlib/libc/include"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Reference in a new issue