From 45f950a7da1008f93218684bd162457753fc8c41 Mon Sep 17 00:00:00 2001 From: Andreas Huggel Date: Wed, 2 Jun 2004 03:13:26 +0000 Subject: [PATCH] (un)install targets should only (un)install exiv2 --- src/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index 883ce0bb..17580827 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,7 +20,7 @@ # 02111-1307, USA. # # File: Makefile -# Version: $Name: $ $Revision: 1.25 $ +# Version: $Name: $ $Revision: 1.26 $ # Author(s): Andreas Huggel (ahu) # History: 10-Dec-03, ahu: created # @@ -214,7 +214,7 @@ bin: lib $(BINARY) $(EXIV2BIN) install: $(INSTALL) $(INSTALL_DIRS) $(bindir) - @list='$(BINARY) $(EXIV2BIN)'; for p in $$list; do \ + @list='$(EXIV2BIN)'; for p in $$list; do \ if test -f $$p; then \ echo "$(INSTALL_PROGRAM) $$p $(bindir)/$$p"; \ $(INSTALL_PROGRAM) $$p $(bindir)/$$p; \ @@ -241,7 +241,7 @@ install-sharedlib: sharedlib install-lib: $(INSTALL_LIB) install-header uninstall: $(UNINSTALL) - @list='$(BINARY) $(EXIV2BIN)'; for p in $$list; do \ + @list='$(EXIV2BIN)'; for p in $$list; do \ echo "rm -f $(bindir)/$$p"; \ rm -f $(bindir)/$$p; \ done