diff options
author | James Laird <jlaird@hdfgroup.org> | 2007-02-06 18:50:04 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2007-02-06 18:50:04 (GMT) |
commit | affdaa04b57c6c598580fa615d64a7680fbda2e8 (patch) | |
tree | 443d9119ec2ab5e2836b50d3e342a21f9a6eea19 /configure.in | |
parent | c13841161e61b0fbcd78efc1b1fd72015c61c8ba (diff) | |
download | hdf5-affdaa04b57c6c598580fa615d64a7680fbda2e8.zip hdf5-affdaa04b57c6c598580fa615d64a7680fbda2e8.tar.gz hdf5-affdaa04b57c6c598580fa615d64a7680fbda2e8.tar.bz2 |
[svn-r13247] Replaced /bin/rm in configure with just rm. This should have no effect on any
platform, since configure already uses rm, but it will prevent a bug in the
(bizarre) case that a system has rm somewhere other than /bin.
Tested on smirom and kagiso.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 8bcb4b3..1ff91e3 100644 --- a/configure.in +++ b/configure.in @@ -54,7 +54,7 @@ AC_OUTPUT_COMMANDS([ if test ! -f src/H5pubconf.h; then /bin/mv -f pubconf src/H5pubconf.h elif (diff pubconf src/H5pubconf.h >/dev/null); then - /bin/rm -f pubconf + rm -f pubconf echo "src/H5pubconf.h is unchanged" else /bin/mv -f pubconf src/H5pubconf.h @@ -895,7 +895,7 @@ VPATH=$srcdir/config $srcdir/src $srcdir/bin cp $< H5.o foo: H5.o - /bin/rm -f H5.o + rm -f H5.o @echo works EOF @@ -914,7 +914,7 @@ VPATH=$srcdir/config:$srcdir/src:$srcdir/bin cp $< H5.o foo: H5.o - /bin/rm -f H5.o + rm -f H5.o @echo works EOF @@ -932,7 +932,7 @@ EOF cp $< H5.o foo: H5.o - /bin/rm -f H5.o + rm -f H5.o @echo works EOF @@ -1876,7 +1876,7 @@ AC_CACHE_CHECK([if lone colon can be used as an argument], chmod 700 conftest.sh ./conftest.sh 2> conftest.out - /bin/rm a.out + rm a.out TEST_OUTPUT=`cat conftest.out` if test "X$TEST_OUTPUT" = "X"; then |