diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-27 18:38:05 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-27 18:38:05 +0200 |
commit | 4053e3c700c0996764585a5c6eaef6b70274537a (patch) | |
tree | f4b2febf5db506631ec3d3c97fef9e29de256858 /source4 | |
parent | f56432e8c34b4a75621665d0c3f08e46963b441d (diff) | |
download | samba-4053e3c700c0996764585a5c6eaef6b70274537a.tar.gz samba-4053e3c700c0996764585a5c6eaef6b70274537a.tar.bz2 samba-4053e3c700c0996764585a5c6eaef6b70274537a.zip |
Use variables for IDL file paths.
(This used to be commit 683ba6de41b3fecc14c18502ff82b4fa617618e5)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/librpc/idl-deps.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/idl-deps.pl b/source4/librpc/idl-deps.pl index e630ee4f61..49fba4c935 100755 --- a/source4/librpc/idl-deps.pl +++ b/source4/librpc/idl-deps.pl @@ -4,8 +4,8 @@ use strict; my %vars = (); foreach(@ARGV) { - push (@{$vars{IDL_FILES}}, $_); my $b = $_; $b =~ s/.*\/(.*?).idl$/$1/; + push (@{$vars{IDL_FILES}}, "\$(librpcsrcdir)/idl/$b.idl"); push (@{$vars{IDL_HEADER_FILES}}, "\$(librpcsrcdir)/gen_ndr/$b.h"); push (@{$vars{IDL_NDR_PARSE_H_FILES}}, "\$(librpcsrcdir)/gen_ndr/ndr_$b.h"); push (@{$vars{IDL_NDR_PARSE_C_FILES}}, "\$(librpcsrcdir)/gen_ndr/ndr_$b.c"); |