From 2413afaf17f1305f592155424354d8390ca2110a Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 22 Feb 2002 17:12:52 -0500 Subject: [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 --- c++/config/conclude.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v0.12