From: Todd C. Miller Date: Mon, 15 Jun 2009 21:18:53 +0000 (+0000) Subject: build the .cat page in the current working dir, not the src dir X-Git-Tag: SUDO_1_7_2~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3086f937f0653f308c69e64a53ad99a25f7c5361;p=sudo build the .cat page in the current working dir, not the src dir --- diff --git a/Makefile.in b/Makefile.in index a607568ab..f841b32ad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -182,8 +182,8 @@ all: $(PROGS) $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(OPTIONS) $< .man.cat: - @rm -f $(srcdir)/$@ - sed '1s/^/.if n .ll 78n/' $< | $(NROFF) -man > $(srcdir)/$@ + @rm -f $@ + sed '1s/^/.if n .ll 78n/' $< | $(NROFF) -man > $@ sudo: $(SUDO_OBJS) $(LIB_OBJS) $(CC) -o $@ $(SUDO_OBJS) $(LIB_OBJS) $(SUDO_LDFLAGS) $(SUDO_LIBS)