diff options
author | Jeremy Allison <jra@samba.org> | 2003-05-23 18:31:57 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-05-23 18:31:57 +0000 |
commit | 9fd39e3f55ce3a82b8fbf2b0b9485dc302d4c34a (patch) | |
tree | 0a200232c50227bf3a0039d59ffc82e0d6697ca0 /source3/Makefile.in | |
parent | 3d5d32826fccec7a6d3517162e38b3c535c805cb (diff) | |
download | samba-9fd39e3f55ce3a82b8fbf2b0b9485dc302d4c34a.tar.gz samba-9fd39e3f55ce3a82b8fbf2b0b9485dc302d4c34a.tar.bz2 samba-9fd39e3f55ce3a82b8fbf2b0b9485dc302d4c34a.zip |
Don't use extensions like '\t' in a sed script. It breaks the make proto.
Jeremy.
(This used to be commit 7d546a6bad3378fcdaf5fc7f0c2057e71382c00a)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index e6e6903f8c..f163761059 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1257,7 +1257,7 @@ include/proto.h: smbd/build_options.c @$(SHELL) $(MKPROTO_SH) $(AWK) \ -h _PROTO_H_ $(builddir)/include/proto.h \ $(builddir)/smbd/build_options.o \ - `echo $(PROTO_OBJ) | sed -e 's%\([^ \t]*\)%$(srcdir)/\1%g'` + `echo $(PROTO_OBJ) | sed -e 's%\([^ ]* \)%$(srcdir)/\1%g'` include/build_env.h: script/build_env.sh @echo Building include/build_env.h @@ -1268,27 +1268,27 @@ include/wrepld_proto.h: @echo Building include/wrepld_proto.h @$(SHELL) $(MKPROTO_SH) $(AWK) \ -h _WREPLD_PROTO_H_ $(builddir)/include/wrepld_proto.h \ - `echo $(WREPL_OBJ1) | sed -e 's%\([^ \t]*\)%$(srcdir)/\1%g'` + `echo $(WREPL_OBJ1) | sed -e 's%\([^ ]* \)%$(srcdir)/\1%g'` nsswitch/winbindd_proto.h: @$(SHELL) $(MKPROTO_SH) $(AWK) \ -h _WINBINDD_PROTO_H_ nsswitch/winbindd_proto.h \ - `echo $(WINBINDD_OBJ1) | sed -e 's%\([^ \t]*\)%$(srcdir)/\1%g'` + `echo $(WINBINDD_OBJ1) | sed -e 's%\([^ ]* \)%$(srcdir)/\1%g'` web/swat_proto.h: @$(SHELL) $(MKPROTO_SH) $(AWK) \ -h _SWAT_PROTO_H_ web/swat_proto.h \ - `echo $(SWAT_OBJ1) | sed -e 's%\([^ \t]*\)%$(srcdir)/\1%g'` + `echo $(SWAT_OBJ1) | sed -e 's%\([^ ]* \)%$(srcdir)/\1%g'` client/client_proto.h: @$(SHELL) $(MKPROTO_SH) $(AWK) \ -h _CLIENT_PROTO_H_ client/client_proto.h \ - `echo $(CLIENT_OBJ1) | sed -e 's%\([^ \t]*\)%$(srcdir)/\1%g'` + `echo $(CLIENT_OBJ1) | sed -e 's%\([^ ]* \)%$(srcdir)/\1%g'` utils/net_proto.h: @$(SHELL) $(MKPROTO_SH) $(AWK) \ -h _CLIENT_PROTO_H_ utils/net_proto.h \ - `echo $(NET_OBJ1) | sed -e 's%\([^ \t]*\)%$(srcdir)/\1%g'` + `echo $(NET_OBJ1) | sed -e 's%\([^ ]* \)%$(srcdir)/\1%g'` # "make headers" or "make proto" calls a subshell because we need to # make sure these commands are executed in sequence even for a |