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
c7c8d3cc
Commit
c7c8d3cc
authored
Feb 05, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Feb 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemaker: Print the invocation command line to the Makefile.
parent
204e53e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
winemaker
tools/winemaker
+10
-4
No files found.
tools/winemaker
View file @
c7c8d3cc
...
...
@@ -318,7 +318,7 @@ sub target_init($)
##
# This is the path in which this project is located. In other
# words, this is the path to
the Makefile.
# words, this is the path to the Makefile.
my
$P_PATH
=
0
;
##
...
...
@@ -2376,7 +2376,13 @@ sub generate_project_files($)
}
print
FILEO
"### Generated by Winemaker $version\n"
;
print
FILEO
"\n\n"
;
print
FILEO
"###\n"
;
print
FILEO
"### Invocation command line was\n"
;
print
FILEO
"### $0"
;
foreach
(
@ARGV
)
{
print
FILEO
" $_"
;
}
print
FILEO
"\n\n\n"
;
generate_list
(
"SRCDIR"
,
1
,[
"."
]);
if
(
@$project
[
$P_PATH
]
eq
""
)
{
...
...
@@ -2653,8 +2659,8 @@ sub usage()
target_init
(
\
@global_settings
);
while
(
@ARGV
>
0
)
{
my
$arg
=
shift
@ARGV
;
foreach
(
@ARGV
)
{
my
$arg
=
$_
;
# General options
if
(
$arg
eq
"--nobanner"
)
{
$opt_no_banner
=
1
;
...
...
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