Hi, just a minor correction. $SRCDIR/Makefile says uninstall-local: -if [ -d $(DESTDIR)$(sysconfdir) ]; then \ rm -f $(DESTDIR)$(sysconfdir)/dillorc*; \ elif [ -d /etc/ ]; then \ rm -f /etc/dillorc* fi but should say uninstall-local: -if [ -d $(DESTDIR)$(sysconfdir) ]; then \ rm -f $(DESTDIR)$(sysconfdir)/dillorc*; \ elif [ -d /etc/ ]; then \ rm -f /etc/dillorc* ; \ # <<-- here fi Jan
On Thu, Feb 06, Jan Stary wrote:
just a minor correction. $SRCDIR/Makefile says
Makefile's are generated, from Makefile.am, this is what has to be changed.
uninstall-local: -if [ -d $(DESTDIR)$(sysconfdir) ]; then \ rm -f $(DESTDIR)$(sysconfdir)/dillorc*; \ elif [ -d /etc/ ]; then \ rm -f /etc/dillorc* fi
but should say
uninstall-local: -if [ -d $(DESTDIR)$(sysconfdir) ]; then \ rm -f $(DESTDIR)$(sysconfdir)/dillorc*; \ elif [ -d /etc/ ]; then \ rm -f /etc/dillorc* ; \ # <<-- here fi
Yes, "make uninstall" does not work (for me), but isn't this supposed to be equivalent? Anyway, I just committed the change. Sebastian
participants (2)
-
Jan Stary
-
Sebastian Geerken