Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
bf8cb196
Commit
bf8cb196
authored
Oct 12, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Always use the global SOURCES variable for .po files.
parent
64de93e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
Makefile.in
po/Makefile.in
+1
-1
make_makefiles
tools/make_makefiles
+1
-5
No files found.
po/Makefile.in
View file @
bf8cb196
PO_SRC
S
=
\
SOURCE
S
=
\
ar.po
\
ast.po
\
bg.po
\
...
...
tools/make_makefiles
View file @
bf8cb196
...
...
@@ -338,7 +338,7 @@ sub assign_sources_to_makefiles(@)
my
$make
=
$makefiles
{
"$dir/Makefile.in"
};
my
$name
=
substr
(
$file
,
length
(
$dir
)
+
1
);
if
(
$name
=~
/\.
mc
$/
)
if
(
$name
=~
/\.
(mc|po)
$/
)
{
push
@
{
$
{
$make
}{
"=SOURCES"
}},
$name
;
next
;
...
...
@@ -363,10 +363,6 @@ sub assign_sources_to_makefiles(@)
{
push
@
{
$
{
$make
}{
"=RC_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.po$/
)
{
push
@
{
$
{
$make
}{
"=PO_SRCS"
}},
$name
;
}
elsif
(
$name
=~
/\.idl$/
)
{
die
"no makedep flags specified in $file"
unless
$dir
eq
"include"
||
get_makedep_flags
(
$file
);
...
...
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