From caa913ead4c17ff775e6dd8db47ed48cde1421c2 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 7 Jan 2006 00:06:58 +0000 Subject: r12753: Try to fix the build after a 'make clean'. (the wildcards will not expand because they don't exist yet). Thanks again to HotaruT. Andrew Bartlett (This used to be commit d3abfecec5c9468e93d2d40181ce5d20f8135566) --- source4/build/smb_build/makefile.pm | 1 + source4/librpc/config.mk | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'source4') diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 2e06dc179a..4bf2e11b6e 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -509,6 +509,7 @@ sub write($$) IDL_FILES = \$(wildcard librpc/idl/*.idl) \$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_%.c,\$(IDL_FILES)) \\ \$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_\%_c.c,\$(IDL_FILES)) \\ +\$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_\%_ejs.c,\$(IDL_FILES)) \\ \$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_%.h,\$(IDL_FILES)): idl __EOD__ ); diff --git a/source4/librpc/config.mk b/source4/librpc/config.mk index 55b59cbb26..52f9a7589b 100644 --- a/source4/librpc/config.mk +++ b/source4/librpc/config.mk @@ -296,9 +296,9 @@ OBJ_FILES = gen_ndr/ndr_winsrepl.o NOPROTO = YES REQUIRED_SUBSYSTEMS = LIBNDR NDR_NBT -librpc/gen_ndr/tables.c: librpc/gen_ndr/ndr_*.h - @$(PERL) librpc/tables.pl --output=librpc/gen_ndr/tables.c \ - librpc/gen_ndr/ndr_*.h +librpc/gen_ndr/tables.c: $(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_%.h,$(IDL_FILES)) + @$(PERL) librpc/tables.pl --output=librpc/gen_ndr/tables.c $^ + [SUBSYSTEM::NDR_IFACE_TABLE] OBJ_FILES = gen_ndr/tables.o -- cgit