diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-07-30 01:49:58 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-07-30 01:49:58 +0000 |
commit | b08931b5528bd3ea9915329bc298990fc953c245 (patch) | |
tree | 30813cec927f3a1c3fdaa25d88b0c8cd5b33e9b3 | |
parent | 184cf564e622f286c7be465330c09e61bce07c30 (diff) | |
download | samba-b08931b5528bd3ea9915329bc298990fc953c245.tar.gz samba-b08931b5528bd3ea9915329bc298990fc953c245.tar.bz2 samba-b08931b5528bd3ea9915329bc298990fc953c245.zip |
fixed a make proto bug pointed out by Chris.
(This used to be commit fc1947b52a37bf2c0739091f3dbd84c4a9781d93)
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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]"` |