diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2012-05-02 17:03:35 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2012-05-02 17:03:35 (GMT) |
commit | 4a5efa8d60a0c85708a4fdce987e1a176fd7f493 (patch) | |
tree | 473b4ce4fb31ae078c6577f2e5c09706362d8df8 /c++/examples | |
parent | 94c8e924facc93336f7603656a44dcc6fac5263c (diff) | |
download | hdf5-4a5efa8d60a0c85708a4fdce987e1a176fd7f493.zip hdf5-4a5efa8d60a0c85708a4fdce987e1a176fd7f493.tar.gz hdf5-4a5efa8d60a0c85708a4fdce987e1a176fd7f493.tar.bz2 |
[svn-r22339] config/examples.am
Added code to install README in share/hdf5_examples
Set permissions on README file to rw-r--r--.
Tested with h5committest, make install and make uninstall.
Diffstat (limited to 'c++/examples')
-rw-r--r-- | c++/examples/Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index 2f35cf9..cb4cc86 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -655,6 +655,12 @@ install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ fi; \ done + @for f in X $(INSTALL_TOP_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + chmod a-x $(EXAMPLETOPDIR)/$$f;\ + fi; \ + done @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ if test $$f != X; then \ (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ @@ -668,6 +674,9 @@ uninstall-examples: @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ fi + @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ + fi @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ fi |