summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2006-05-19 12:22:07 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2006-05-19 12:22:07 (GMT)
commit56c0a0f9930c0a7d5cfa61ffc0872bcc0d4bee29 (patch)
tree2c18b57ef03c569274255f31e7bf593fd3c228e3 /c++
parent698f38c1fedfb487c5e2df274730c3df59ef8527 (diff)
downloadhdf5-56c0a0f9930c0a7d5cfa61ffc0872bcc0d4bee29.zip
hdf5-56c0a0f9930c0a7d5cfa61ffc0872bcc0d4bee29.tar.gz
hdf5-56c0a0f9930c0a7d5cfa61ffc0872bcc0d4bee29.tar.bz2
[svn-r12358] Purpose:
Bug fix. Description: The ${TR}, though avoid the error, is inconvenient. It is needed because configure.in use the char range in the style of 'a-z'. The other style of '[a-z]' is more commonly accepted by all tr but autoconf tends to strip away [], making the syntax rather clumsy. Solution: Learned from autoconf that it avoids the use of character range by just spell all the letters out. Changed our tr commands to use those variables defined by autoconf. Also removed the definition of ${TR} since it will cause inconsistancy when autoconf also use plain 'tr' in its generated code. The Makefile.in are changed because the elimination of ${TR} from configure triggered its removal from all Makefil.in. That is okay because ${TR} is not used at all in Makefile. Platforms tested: h5committested. (sol failed to connected). also tested in shanti using both /usr/ucb/tr and /bin/tr (the bad one before.) Misc. update: Updated both INSTALL and RELEASE files.
Diffstat (limited to 'c++')
-rw-r--r--c++/Makefile.in1
-rw-r--r--c++/examples/Makefile.in1
-rw-r--r--c++/src/Makefile.in1
-rw-r--r--c++/test/Makefile.in1
4 files changed, 0 insertions, 4 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in
index 8be03c2..9f76daf 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -206,7 +206,6 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
-TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index 17d2ba5..31e6666 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -203,7 +203,6 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
-TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index 1e55b5a..9bb08c6 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -240,7 +240,6 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
-TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index 8b5e64f..24363c6 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -229,7 +229,6 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
-TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@