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
ce25c895
Commit
ce25c895
authored
Jan 04, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Don't expand variable references that use ${}.
parent
9c2725d5
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
15 deletions
+20
-15
Make.vars.in
Make.vars.in
+2
-3
Makefile.in
dlls/appwiz.cpl/Makefile.in
+1
-1
Makefile.in
libs/wine/Makefile.in
+6
-6
makedep.c
tools/makedep.c
+6
-0
Makefile.in
tools/widl/Makefile.in
+1
-1
Makefile.in
tools/winegcc/Makefile.in
+3
-3
Makefile.in
tools/wrc/Makefile.in
+1
-1
No files found.
Make.vars.in
View file @
ce25c895
...
...
@@ -6,12 +6,11 @@ bindir = @bindir@
libdir = @libdir@
datarootdir = @datarootdir@
datadir = @datadir@
infodir = @infodir@
mandir = @mandir@
fontdir = $
(datadir)
/wine/fonts
fontdir = $
{datadir}
/wine/fonts
includedir = @includedir@/wine
dlldir = @dlldir@
fakedlldir = $
(dlldir)
/fakedlls
fakedlldir = $
{dlldir}
/fakedlls
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@
srcdir = @srcdir@
...
...
dlls/appwiz.cpl/Makefile.in
View file @
ce25c895
MODULE
=
appwiz.cpl
IMPORTS
=
uuid urlmon advpack comctl32 advapi32 shell32 user32 comdlg32
DELAYIMPORTS
=
msi
EXTRADEFS
=
-DINSTALL_DATADIR
=
"
\"
$
(datadir)
\"
"
EXTRADEFS
=
-DINSTALL_DATADIR
=
"
\"
$
{
datadir
}
\"
"
C_SRCS
=
\
addons.c
\
...
...
libs/wine/Makefile.in
View file @
ce25c895
EXTRALIBS
=
$(LIBPORT)
@LIBDL@ @COREFOUNDATIONLIB@ @CORESERVICESLIB@
EXTRADEFS
=
-DWINE_UNICODE_API
=
""
\
-DBINDIR
=
'"
$
(bindir)
"'
\
-DDLLDIR
=
'"
$
(dlldir)
"'
\
-DBINDIR
=
'"$
{bindir}
"'
\
-DDLLDIR
=
'"$
{dlldir}
"'
\
-DDLLPREFIX
=
'"
$(DLLPREFIX)
"'
\
-DLIB_TO_BINDIR
=
\"
`
$(MAKEDEP)
-R
$
(libdir)
$(bindir)
`
\"
\
-DLIB_TO_DLLDIR
=
\"
`
$(MAKEDEP)
-R
$
(libdir)
$(dlldir)
`
\"
\
-DBIN_TO_DLLDIR
=
\"
`
$(MAKEDEP)
-R
$
(bindir)
$(dlldir)
`
\"
\
-DBIN_TO_DATADIR
=
\"
`
$(MAKEDEP)
-R
$
(bindir)
$(datadir)
/wine
`
\"
-DLIB_TO_BINDIR
=
\"
`
$(MAKEDEP)
-R
$
{
libdir
}
${
bindir
}
`
\"
\
-DLIB_TO_DLLDIR
=
\"
`
$(MAKEDEP)
-R
$
{
libdir
}
${
dlldir
}
`
\"
\
-DBIN_TO_DLLDIR
=
\"
`
$(MAKEDEP)
-R
$
{
bindir
}
${
dlldir
}
`
\"
\
-DBIN_TO_DATADIR
=
\"
`
$(MAKEDEP)
-R
$
{
bindir
}
${
datadir
}
/wine
`
\"
STATICLIB
=
libwine_static.a
C_SRCS
=
\
...
...
tools/makedep.c
View file @
ce25c895
...
...
@@ -1157,6 +1157,12 @@ static char *get_expanded_make_variable( const char *name )
tmp
=
replace_substr
(
expand
,
p
,
end
-
p
,
var
?
var
:
""
);
free
(
var
);
}
else
if
(
p
[
1
]
==
'{'
)
/* don't expand ${} variables */
{
if
(
!
(
end
=
strchr
(
p
+
2
,
'}'
)))
fatal_error
(
"syntax error in '%s'
\n
"
,
expand
);
p
=
end
+
1
;
continue
;
}
else
if
(
p
[
1
]
==
'$'
)
{
tmp
=
replace_substr
(
expand
,
p
,
2
,
"$"
);
...
...
tools/widl/Makefile.in
View file @
ce25c895
...
...
@@ -19,7 +19,7 @@ C_SRCS = \
LEX_SRCS
=
parser.l
BISON_SRCS
=
parser.y
EXTRADEFS
=
-DDEFAULT_INCLUDE_DIR
=
\"
$
(includedir)
/windows/
\"
EXTRADEFS
=
-DDEFAULT_INCLUDE_DIR
=
\"
$
{
includedir
}
/windows/
\"
@MAKE_RULES@
...
...
tools/winegcc/Makefile.in
View file @
ce25c895
EXTRADEFS
=
\
-DINCLUDEDIR
=
"
\"
$
(includedir)
\"
"
\
-DDLLDIR
=
"
\"
$
(dlldir)
\"
"
\
-DLIBDIR
=
"
\"
$
(libdir)
\"
"
\
-DINCLUDEDIR
=
"
\"
$
{
includedir
}
\"
"
\
-DDLLDIR
=
"
\"
$
{
dlldir
}
\"
"
\
-DLIBDIR
=
"
\"
$
{
libdir
}
\"
"
\
-DCC
=
"
\"
$(CC)
\"
"
\
-DCPP
=
"
\"
@CPPBIN@
\"
"
\
-DCXX
=
"
\"
@CXX@
\"
"
\
...
...
tools/wrc/Makefile.in
View file @
ce25c895
EXTRADEFS
=
-DINCLUDEDIR
=
"
\"
$
(includedir)
\"
"
EXTRADEFS
=
-DINCLUDEDIR
=
"
\"
$
{
includedir
}
\"
"
PROGRAMS
=
wrc
$(EXEEXT)
MANPAGES
=
wrc.man.in
ALL_LIBS
=
@LIBGETTEXTPO@
$(LIBWPP)
$(LIBWINE_STATIC)
$(LIBPORT)
...
...
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