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 | |
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')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -24134,7 +24134,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 @@ -24152,7 +24152,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 @@ -24170,7 +24170,7 @@ echo "${ECHO_T}VPATH=DIR1:DIR2:..." >&6; } cp $< H5.o foo: H5.o - /bin/rm -f H5.o + rm -f H5.o @echo works EOF @@ -53911,7 +53911,7 @@ else 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 @@ -60929,7 +60929,7 @@ echo "$as_me: executing $ac_file commands" >&6;} 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 |