Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
e9a34e91
Commit
e9a34e91
authored
Jul 09, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_makefiles: Add more wildcard patterns in .gitignore.
parent
33128dbb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
7 deletions
+4
-7
.gitignore
.gitignore
+0
-0
make_makefiles
tools/make_makefiles
+4
-7
No files found.
.gitignore
View file @
e9a34e91
This diff is collapsed.
Click to expand it.
tools/make_makefiles
View file @
e9a34e91
...
...
@@ -68,6 +68,7 @@ my %special_dlls =
# Default patterns for top-level .gitignore
my
@ignores
=
(
"*.[oa]"
,
"*.ok"
,
"*.res"
,
"*.so"
,
"/autom4te.cache"
,
...
...
@@ -78,6 +79,9 @@ my @ignores = (
"/tags"
,
"Makefile"
,
"dlldata.c"
,
"dlls/*/*.def"
,
"dlls/*/tests/*crosstest.exe"
,
"dlls/*/tests/testlist.c"
,
"include/config.h"
,
"include/stamp-h"
);
...
...
@@ -377,9 +381,6 @@ sub update_dlls(@)
{
$testdirs
{
$1
}
=
"$1/tests"
;
(
my
$crosstest
=
$makefile
{
"TESTDLL"
})
=~
s/\.dll$//
;
push
@ignores
,
$makefile
{
"=dir"
}
.
$crosstest
.
"_crosstest.exe"
;
push
@ignores
,
$makefile
{
"=dir"
}
.
"testlist.c"
;
push
@ignores
,
$makefile
{
"=dir"
}
.
"*.ok"
;
next
;
}
...
...
@@ -587,10 +588,6 @@ sub update_dlls(@)
next
unless
defined
$altnames
{
$mod
};
push
@ignores
,
map
{
"dlls/"
.
$_
.
"16"
;
}
@
{
$altnames
{
$mod
}};
}
foreach
my
$mod
(
sort
keys
%
importlibs
)
{
push
@ignores
,
"dlls/$directories{$mod}/lib$importlibs{$mod}.def"
;
}
return
@ignores
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment