diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-15 08:10:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:44 -0500 |
commit | e310cce43f0052c35c28abd74f1815afbc77fe58 (patch) | |
tree | 5f1c142c6842975846945865447b7abaeb38dc17 /source4 | |
parent | 040b5b812e5a92c8a62334ee6ec85af9f5376ec2 (diff) | |
download | samba-e310cce43f0052c35c28abd74f1815afbc77fe58.tar.gz samba-e310cce43f0052c35c28abd74f1815afbc77fe58.tar.bz2 samba-e310cce43f0052c35c28abd74f1815afbc77fe58.zip |
r18545: if yapp isn't availabe touch the target file, as it is commited to svn,
to prevent rebuilding.
we do
make everything
make everything
make bin/smbtorture
make test
in the buildfarm and rebuilding parts isn't that nice
metze
(This used to be commit 212fa7977d514f81ce4301902a8038869ee02b4e)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/main.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/main.mk b/source4/main.mk index 9af1beb706..4c93413557 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -208,14 +208,16 @@ idl: pidl/lib/Parse/Pidl/IDL.pm @CPP="$(CPP)" PERL="$(PERL)" srcdir=$(srcdir) $(srcdir)/script/build_idl.sh PARTIAL $(PIDL_ARGS) pidl/lib/Parse/Pidl/IDL.pm: pidl/idl.yp - -$(YAPP) -s -m 'Parse::Pidl::IDL' -o pidl/lib/Parse/Pidl/IDL.pm pidl/idl.yp + -$(YAPP) -s -m 'Parse::Pidl::IDL' -o pidl/lib/Parse/Pidl/IDL.pm pidl/idl.yp ||\ + touch pidl/lib/Parse/Pidl/IDL.pm smb_interfaces: pidl/smb_interfaces.pm $(PERL) -Ipidl $(srcdir)/script/build_smb_interfaces.pl \ include/smb_interfaces.h pidl/smb_interfaces.pm: pidl/smb_interfaces.yp - -$(YAPP) -s -m 'smb_interfaces' -o pidl/smb_interfaces.pm pidl/smb_interfaces.yp + -$(YAPP) -s -m 'smb_interfaces' -o pidl/smb_interfaces.pm pidl/smb_interfaces.yp ||\ + touch pidl/smb_interfaces.pm include/config.h: @echo "include/config.h not present" |