summaryrefslogtreecommitdiffstats
path: root/c++/config
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-02-22 22:12:52 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-02-22 22:12:52 (GMT)
commit2413afaf17f1305f592155424354d8390ca2110a (patch)
treec31a9971242a70d190cf7d864c1a735a3ecfa9b2 /c++/config
parentd8266790ec757715f834f21e8938ef9ab5e9f641 (diff)
downloadhdf5-2413afaf17f1305f592155424354d8390ca2110a.zip
hdf5-2413afaf17f1305f592155424354d8390ca2110a.tar.gz
hdf5-2413afaf17f1305f592155424354d8390ca2110a.tar.bz2
[svn-r5002]
Purpose: Bug Fix Description: C++ examples weren't being removed. Solution: We were trying to remove something called "EXAMPLE_DOCS", but we needed to remove "EXAMPLE_PROGS" instead. Platforms tested: Linux
Diffstat (limited to 'c++/config')
-rw-r--r--c++/config/conclude.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/config/conclude.in b/c++/config/conclude.in
index 2bbd1c3..1b62ea9 100644
--- a/c++/config/conclude.in
+++ b/c++/config/conclude.in
@@ -100,7 +100,7 @@ install-examples: $(EXAMPLE_PROGS) $(EXAMPLEDIR)
uninstall-examples:
@if test -n "$(EXAMPLE_PROGS)"; then \
- set -x; cd $(EXAMPLEDIR) && $(RM) $(EXAMPLE_DOCS); \
+ set -x; cd $(EXAMPLEDIR) && $(RM) $(EXAMPLE_PROGS); \
fi
## Removes those things that `make install' (would have) installed.