summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-07-30 01:49:58 +0000
committerAndrew Tridgell <tridge@samba.org>1998-07-30 01:49:58 +0000
commitfc1947b52a37bf2c0739091f3dbd84c4a9781d93 (patch)
treeadb6bd32e81d6b434e8b795ae267b8cf5d751696
parent0bdb51af3199eb32cd3da4c4b8d31fbed5d2ae85 (diff)
downloadsamba-fc1947b52a37bf2c0739091f3dbd84c4a9781d93.tar.gz
samba-fc1947b52a37bf2c0739091f3dbd84c4a9781d93.tar.xz
samba-fc1947b52a37bf2c0739091f3dbd84c4a9781d93.zip
fixed a make proto bug pointed out by Chris.
-rw-r--r--source/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Makefile.in b/source/Makefile.in
index 4c31571dca5..730fdddf3dd 100644
--- a/source/Makefile.in
+++ b/source/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]"`