Fixed a couple of typos.

This commit is contained in:
Dana Robinson 2019-07-31 22:16:50 -05:00
parent 0ee5526c2c
commit 438935557e
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS)
# make install-doc doesn't do anything outside of doc directory, but
# Makefiles should recognize it.
# UPDATE: docs no longer reside in this build tree, so this target
# is depreciated.
# is deprecated.
install-doc uninstall-doc:
@echo "Nothing to be done."

View File

@ -195,7 +195,7 @@ if test "X-gcc" = "X-$cc_vendor"; then
# -Wvolatile-register-var was later incorporated into -Wall and
# only needs to be specified explicitly for gcc 4.2-4.3
if test $cc_vers_major -eq 4 -a $cc_vers_minor -ge 2 -o $cc_vers_major -eq 4 -a $$cc_vers_minor -le 3; then
if test $cc_vers_major -eq 4 -a $cc_vers_minor -ge 2 -o $cc_vers_major -eq 4 -a $cc_vers_minor -le 3; then
H5_CFLAGS="$H5_CFLAGS -Wvolatile-register-var"
fi