mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r11062] Purpose:
bug fix Description: rwdsetexample and attrexample both modify the same file created by dsetexample. Need to serialize all three of them. Platforms tested: Did 50 times of make check in fortran/examples. It used to fail at least once. Now it does not fail.
This commit is contained in:
parent
b14a4fd95f
commit
b802c46622
@ -51,9 +51,12 @@ CLEANFILES=*.h5 $(EXTRA_PROG)
|
||||
HDF_FORTRAN=yes
|
||||
|
||||
# Some examples depend on files created by other examples.
|
||||
rwdsetexample.chkexe_ attrexample.chkexe_: dsetexample.chkexe_
|
||||
grpdsetexample.chkexe_: grpsexample.chkexe_
|
||||
refregexample.chkexe_: refobjexample.chkexe_
|
||||
# rwdsetexample and attrexample both modify the same file created by
|
||||
# dsetexample. Serialize them.
|
||||
rwdsetexample.chkexe_: dsetexample.chkexe_
|
||||
attrexample.chkexe_: rwdsetexample.chkexe_
|
||||
|
||||
# Tell automake how to build examples using h5fc
|
||||
# Additional dependencies for the examples are listed below
|
||||
|
@ -491,9 +491,12 @@ uninstall-am: uninstall-info-am uninstall-local
|
||||
|
||||
|
||||
# Some examples depend on files created by other examples.
|
||||
rwdsetexample.chkexe_ attrexample.chkexe_: dsetexample.chkexe_
|
||||
grpdsetexample.chkexe_: grpsexample.chkexe_
|
||||
refregexample.chkexe_: refobjexample.chkexe_
|
||||
# rwdsetexample and attrexample both modify the same file created by
|
||||
# dsetexample. Serialize them.
|
||||
rwdsetexample.chkexe_: dsetexample.chkexe_
|
||||
attrexample.chkexe_: rwdsetexample.chkexe_
|
||||
|
||||
# Tell automake how to build examples using h5fc
|
||||
# Additional dependencies for the examples are listed below
|
||||
|
Loading…
Reference in New Issue
Block a user