summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@courtesan.com>2009-06-15 21:18:53 +0000
committerTodd C. Miller <Todd.Miller@courtesan.com>2009-06-15 21:18:53 +0000
commit96d52a3d9cd0becc370869f35befbe8ca12e6cc5 (patch)
tree3cc98c149c1ed30049425c267708455d426d1f69
parentc60cd333f4ebe808d33fe7edc76c49c0d6ff8a8d (diff)
downloadsudo-96d52a3d9cd0becc370869f35befbe8ca12e6cc5.tar.gz
build the .cat page in the current working dir, not the src dir
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
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)