mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
make_makefiles: Ignore files that have been deleted in the index.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5c2526a086
commit
bfc8634747
@ -542,6 +542,7 @@ my $git_dir = $ENV{GIT_DIR} || ".git";
|
||||
die "needs to be run from a git checkout" unless -d $git_dir;
|
||||
|
||||
my @all_files = split /\0/, `git ls-files -c -z`;
|
||||
map { $ignored_source_files{$_} = 1; } split /\0/, `git ls-files -d -z`;
|
||||
@makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
|
||||
|
||||
foreach my $file (sort @makefiles)
|
||||
|
Loading…
Reference in New Issue
Block a user