summaryrefslogtreecommitdiffstats
path: root/bin/mkdirs
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to ↵Larry Knox2017-04-251-6/+4
| | | | | | | | | | hdf5_1_10 * commit '54957d37f5aa73912763dbb6e308555e863c43f4': Commit copyright header change for src/H5PLpkg.c which was added after running script to make changes. Add new files in release_docs to MANIFEST. Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Merge pull request #407 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_1 to hdf5_1_10_1 Change copyright headers to replace url referring to file to be removed and replace it with new url for COPYING file.
* [svn-r13311] Updated copyright notice.Albert Cheng2007-02-141-2/+3
| | | | | Test: Just visual inspection as these are all comments changes.
* [svn-r6536] Purpose:Bill Wendling2003-03-311-3/+11
| | | | | | | | | | | | Updated Copyright Statement Description: Replaced old copyright statement with new one. Platforms tested: No need. Misc. update:
* [svn-r4472] Bill Wendling2001-09-241-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 Wendling2001-09-231-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 Wendling2001-09-211-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