Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed Apr 9, 2024
1 parent 88d72b5 commit 990cb5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/h5cc.in
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ if test "$dash_c" = "-c" -a "$do_compile" = no -a "$do_link" = no ; then
fi

if test "x$do_compile" = "xyes"; then
if test "x$dash_c" == "x"; then
if test "x$dash_c" = "x"; then
dash_c="-c"
fi
$SHOW $CC -I$includedir $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CFLAGS $CFLAGS $dash_c $qargs $compile_args
Expand Down
2 changes: 1 addition & 1 deletion c++/src/h5c++.in
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ for arg in $@ ; do
done
link_args="$link_args $qargs"
if test "x$do_compile" = "xyes"; then
if test "x$dash_c" == "x"; then
if test "x$dash_c" = "x"; then
dash_c="-c"
fi
$SHOW $CXX -I$includedir $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CXXFLAGS $CXXFLAGS $dash_c $qargs $compile_args
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
## ----------------------------------------------------------------------
## Initialize configure.
##
AC_PREREQ([2.71])
AC_PREREQ([2.69])

## AC_INIT takes the name of the package, the version number, and an
## email address to report bugs. AC_CONFIG_SRCDIR takes a unique file
Expand Down
2 changes: 1 addition & 1 deletion fortran/src/h5fc.in
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ link_args="$link_args $qargs"
fi

if test "x$do_compile" = "xyes"; then
if test "x$dash_c" == "x"; then
if test "x$dash_c" = "x"; then
dash_c="-c"
fi
$SHOW $FC $H5BLD_FCFLAGS $FCFLAGS ${F9XSUFFIXFLAG} ${fmodules} $dash_c $qargs $compile_args
Expand Down

0 comments on commit 990cb5e

Please sign in to comment.