From f0b4f00883695f6958444feebba5cc06efdfb579 Mon Sep 17 00:00:00 2001 From: Erik Ekman Date: Sun, 24 Jun 2007 10:33:40 +0000 Subject: [PATCH] uninstall in destdir --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 154ab6d..1db410c 100644 --- a/Makefile +++ b/Makefile @@ -28,9 +28,9 @@ install: all chmod 644 $(DESTDIR)$(mandir)/man8/iodine.8 uninstall: - $(RM) $(RM_FLAGS) $(sbindir)/iodine - $(RM) $(RM_FLAGS) $(sbindir)/iodined - $(RM) $(RM_FLAGS) $(mandir)/man8/iodine.8 + $(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodine + $(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodined + $(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8 test: all @(cd tests; make all)