From b08931b5528bd3ea9915329bc298990fc953c245 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 30 Jul 1998 01:49:58 +0000 Subject: fixed a make proto bug pointed out by Chris. (This used to be commit fc1947b52a37bf2c0739091f3dbd84c4a9781d93) --- source3/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/Makefile.in') diff --git a/source3/Makefile.in b/source3/Makefile.in index 4c31571dca..730fdddf3d 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -311,7 +311,7 @@ cleandir: clean rm -f .depend tags proto: - $(AWK) -f mkproto.awk `echo $(PROTOOBJ) | sed -e 's/\.o/\.c/g' | tr ' ' '\n' | sort | fgrep -v "ubiqx" | uniq` > proto.h + $(AWK) -f mkproto.awk `echo $(PROTOOBJ) | tr ' ' '\n' | sed -e 's/\.o/\.c/g' | sort | fgrep -v "ubiqx" | uniq` > proto.h etags: etags `find . -name "*.[ch]"` -- cgit