diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-04-21 15:33:53 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-04-21 15:37:36 +0200 |
commit | 4eb557bf258f2fcc771be130763634910f2a60d2 (patch) | |
tree | 47d50377bfb0eb8cf1fb6f1f8a402f6a832b2a69 | |
parent | 9b33766fbb13fc2ab82e209607db37f5888ddc2b (diff) | |
download | samba-4eb557bf258f2fcc771be130763634910f2a60d2.tar.gz samba-4eb557bf258f2fcc771be130763634910f2a60d2.tar.bz2 samba-4eb557bf258f2fcc771be130763634910f2a60d2.zip |
Revert "Use an absolute path to ensure that we can always regenerate tables.c"
This reverts commit b57c8ff4400e5f2bd0776247496b34dab68bde97.
This actually breaks the merged build...
Doing a merged build and a samba4 build within the same
checkout, without a git clean -x -d -f (this removes everything that's
not checked into git! save files you don't want to delete!) running in the
toplevel directory, is not supported.
metze
-rw-r--r-- | source4/librpc/idl-deps.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/librpc/idl-deps.pl b/source4/librpc/idl-deps.pl index b3f0451eeb..4d97139fc5 100644 --- a/source4/librpc/idl-deps.pl +++ b/source4/librpc/idl-deps.pl @@ -1,7 +1,6 @@ #!/usr/bin/perl use strict; use File::Basename; -use Cwd 'abs_path'; sub add($$) { @@ -20,7 +19,6 @@ foreach(@ARGV) { my $gen_ndr = dirname($f); $gen_ndr =~ s/\/idl$/\/gen_ndr/; - $gen_ndr = abs_path($gen_ndr); print "# $f\n"; add("IDL_FILES", $f); |