[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
This commit is contained in:
Bill Wendling 2002-02-22 17:12:52 -05:00
parent d8266790ec
commit 2413afaf17

View File

@ -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.