Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [svn-r6536] Purpose: | Bill Wendling | 2003-03-31 | 1 | -3/+11 |
| | | | | | | | | | | | | Updated Copyright Statement Description: Replaced old copyright statement with new one. Platforms tested: No need. Misc. update: | ||||
* | [svn-r4472] | Bill Wendling | 2001-09-24 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | Purpose: Refix Description: Changed if test -d $1; then : else to if test ! -d $1; then since "test ! -d" should work on all platforms and is a much cleaner solution than the original. Platforms tested: Linux | ||||
* | [svn-r4469] | Bill Wendling | 2001-09-23 | 1 | -1/+3 |
| | | | | | | | | | | | | Purpose: Bug Fix Description: Some systems can't handle a test like: if ! test -d "foo"; then Solution: Removed the "!" and made a success a "nop". | ||||
* | [svn-r4466] | Bill Wendling | 2001-09-21 | 1 | -0/+26 |
Purpose: Feature Add Description: Added "install-example" and "install-all" to the Makefile system. The behaviour of the "make install*" options: make install - Installs binaries, libraries, include files, and example programs. make install-examples - Installs only the example programs. The directories are: ${prefix}/doc/hdf5/examples/{c,c++,fortran} make install-all - Install the binaries, libraries, include files, example programs, and documentation. The whole kit-n'-caboodle. make uninstall-examples - Get rid of those example files (but not the ${prefix}/doc/hdf5/examples/... directories) There's a new bin/ program which helps create directories which are deeply nested called "mkdirs". It's a simple shell script. Platforms tested: Linux |