From 074b2409269f8412d107257670f47d8a39576fb9 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 6 Apr 1998 10:13:17 +0000 Subject: [PATCH] typo in sed invocations git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4754 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/xnlock/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appl/xnlock/Makefile.in b/appl/xnlock/Makefile.in index e222c4373..2aa474009 100644 --- a/appl/xnlock/Makefile.in +++ b/appl/xnlock/Makefile.in @@ -57,7 +57,7 @@ install: all $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1 (cd $(srcdir); \ for x in $(MAN1); do \ - b=`echo $$x | sed -e 's/\.man//' -e '$(transform);`.1; \ + b=`echo $$x | sed -e 's/\.man//' -e '$(transform)'`.1; \ $(INSTALL_DATA) $$x $(DESTDIR)$(mandir)/man1/$$b; \ done) @@ -66,7 +66,7 @@ uninstall: rm -f $(DESTDIR)$(bindir)/`echo $$x | sed '$(transform)'`; \ done for x in $(MAN1); do \ - b=`echo $$x | sed -e 's/\.man//' -e '$(transform);`.1; \ + b=`echo $$x | sed -e 's/\.man//' -e '$(transform)'`.1; \ rm -f $(DESTDIR)$(mandir)/man1/$$b; \ done