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
9b7ca823
Commit
9b7ca823
authored
Mar 04, 2008
by
Tony Wasserka
Committed by
Alexandre Julliard
Mar 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_makefiles: Fix importlib handling.
parent
4f148c28
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
make_makefiles
tools/make_makefiles
+3
-9
No files found.
tools/make_makefiles
View file @
9b7ca823
...
...
@@ -526,12 +526,9 @@ sub update_dlls(@)
}
foreach
my
$mod
(
sort
keys
%
importlibs
)
{
my
$dir
=
$directories
{
$mod
};
my
$def
=
$mod
;
$def
=~
s/\.(dll|drv)$//
;
$text
.=
sprintf
" \\\n\t%s/lib%s.\$(IMPLIBEXT)"
,
$dir
,
$def
;
$text
.=
" \\\n\t$directories{$mod}/$importlibs{$mod}.\$(IMPLIBEXT)"
;
next
unless
defined
$static_implibs
{
$mod
};
$text
.=
sprintf
" \\\n\t%s/lib%s.\$(STATIC_IMPLIBEXT)"
,
$dir
,
$def
$text
.=
" \\\n\t$directories{$mod}/$importlibs{$mod}.\$(STATIC_IMPLIBEXT)"
;
}
$text
.=
"\n\n"
;
$text
.=
"implib: \$(IMPORT_LIBS)\n\n"
;
...
...
@@ -588,10 +585,7 @@ sub update_dlls(@)
}
foreach
my
$mod
(
sort
keys
%
importlibs
)
{
my
$dir
=
$directories
{
$mod
};
my
$def
=
$mod
;
$def
=~
s/\.(dll|drv)$//
;
push
@ignores
,
"dlls/$dir/lib$def.def"
;
push
@ignores
,
"dlls/$directories{$mod}/$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