diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-25 14:20:03 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:06 +1000 |
commit | 12e6a920a79c04779cd188e8e88b16625d273c8f (patch) | |
tree | d430f3863539f45aecf429ed5de7c8acccc2519a | |
parent | 14fc71fc27d80d76d4e1cdba0f8d2a4eace2dd0c (diff) | |
download | samba-12e6a920a79c04779cd188e8e88b16625d273c8f.tar.gz samba-12e6a920a79c04779cd188e8e88b16625d273c8f.tar.xz samba-12e6a920a79c04779cd188e8e88b16625d273c8f.zip |
build: old versions of perl don't understand the -W option
-rw-r--r-- | buildtools/wafsamba/samba_autoproto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_autoproto.py b/buildtools/wafsamba/samba_autoproto.py index 7e003cbf3f..78048680c7 100644 --- a/buildtools/wafsamba/samba_autoproto.py +++ b/buildtools/wafsamba/samba_autoproto.py @@ -8,7 +8,7 @@ def HEIMDAL_AUTOPROTO(bld, header, source, options=None, group='prototypes'): bld.SET_BUILD_GROUP(group) if options is None: options='-q -P comment -o' - t = bld(rule='${PERL} -W ../heimdal/cf/make-proto.pl ${OPTIONS} ${TGT[0].abspath(env)} ${SRC}', + t = bld(rule='${PERL} ../heimdal/cf/make-proto.pl ${OPTIONS} ${TGT[0].abspath(env)} ${SRC}', source=source, target=header, on_results=True, |