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
fbc80d79
Commit
fbc80d79
authored
Feb 27, 2007
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Generate stand alone AC_CONFIG_FILES() lines.
parent
3a66a787
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
configure
configure
+0
-0
configure.ac
configure.ac
+0
-0
make_makefiles
tools/make_makefiles
+8
-4
No files found.
configure
View file @
fbc80d79
This diff is collapsed.
Click to expand it.
configure.ac
View file @
fbc80d79
This diff is collapsed.
Click to expand it.
tools/make_makefiles
View file @
fbc80d79
...
...
@@ -229,10 +229,14 @@ foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
push
@lines
,
"AC_SUBST_FILE($var)\n\n"
;
}
replace_in_file
(
"configure.ac"
,
'^MAKE_RULES'
,
'\]\)$'
,
@lines
,
"AC_CONFIG_FILES([\n"
,
join
(
"\n"
,
(
sort
values
%
makerules
),
(
sort
@makefiles
)
),
"])\n"
);
foreach
my
$var
((
sort
values
%
makerules
),
(
sort
@makefiles
))
{
push
@lines
,
"AC_CONFIG_FILES([$var])\n"
;
}
push
@lines
,
"\nAC_OUTPUT\n"
;
replace_in_file
(
"configure.ac"
,
'^MAKE_RULES'
,
'^AC_OUTPUT$'
,
@lines
);
################################################################
...
...
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