makefiles: Disable binary installation in the individual makefiles on Wow64.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cdc179273d
commit
d5f316bf0a
|
@ -33,6 +33,7 @@ dlldir = ${libdir}/wine
|
|||
top_srcdir = @top_srcdir@
|
||||
top_builddir = @top_builddir@
|
||||
srcdir = @srcdir@
|
||||
wine64_disable = @wine64_disable@
|
||||
SHELL = /bin/sh
|
||||
RM = rm -f
|
||||
MV = mv
|
||||
|
|
|
@ -757,6 +757,7 @@ AR
|
|||
BISON
|
||||
FLEX
|
||||
TOOLSDIR
|
||||
wine64_disable
|
||||
TARGETFLAGS
|
||||
LD
|
||||
CPPBIN
|
||||
|
@ -5371,6 +5372,8 @@ then
|
|||
You should create a separate build directory and run configure from there." "$LINENO" 5
|
||||
enable_fonts=${enable_fonts:-no}
|
||||
enable_server=${enable_server:-no}
|
||||
wine64_disable=\#
|
||||
|
||||
elif test "x$enable_win64" = "xyes"
|
||||
then
|
||||
test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib64"
|
||||
|
|
|
@ -228,6 +228,7 @@ then
|
|||
You should create a separate build directory and run configure from there.])
|
||||
enable_fonts=${enable_fonts:-no}
|
||||
enable_server=${enable_server:-no}
|
||||
AC_SUBST(wine64_disable,[\#])
|
||||
elif test "x$enable_win64" = "xyes"
|
||||
then
|
||||
test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib64"
|
||||
|
|
|
@ -12,4 +12,4 @@ MANPAGES = msiexec.man.in
|
|||
|
||||
SVG_SRCS = msiexec.svg
|
||||
|
||||
INSTALL_LIB = msiexec.exe msiexec
|
||||
INSTALL_LIB = msiexec.exe $(wine64_disable)msiexec
|
||||
|
|
|
@ -12,4 +12,4 @@ MANPAGES = notepad.man.in
|
|||
|
||||
SVG_SRCS = notepad.svg
|
||||
|
||||
INSTALL_LIB = notepad.exe notepad
|
||||
INSTALL_LIB = notepad.exe $(wine64_disable)notepad
|
||||
|
|
|
@ -21,4 +21,4 @@ MANPAGES = regedit.man.in
|
|||
|
||||
SVG_SRCS = regedit.svg
|
||||
|
||||
INSTALL_LIB = regedit.exe regedit
|
||||
INSTALL_LIB = regedit.exe $(wine64_disable)regedit
|
||||
|
|
|
@ -9,4 +9,4 @@ RC_SRCS = regsvr32.rc
|
|||
|
||||
MANPAGES = regsvr32.man.in
|
||||
|
||||
INSTALL_LIB = regsvr32.exe regsvr32
|
||||
INSTALL_LIB = regsvr32.exe $(wine64_disable)regsvr32
|
||||
|
|
|
@ -11,4 +11,4 @@ RC_SRCS = wineboot.rc
|
|||
|
||||
MANPAGES = wineboot.man.in
|
||||
|
||||
INSTALL_LIB = wineboot.exe wineboot
|
||||
INSTALL_LIB = wineboot.exe $(wine64_disable)wineboot
|
||||
|
|
|
@ -23,4 +23,4 @@ SVG_SRCS = \
|
|||
logo.svg \
|
||||
winecfg.svg
|
||||
|
||||
INSTALL_LIB = winecfg.exe winecfg
|
||||
INSTALL_LIB = winecfg.exe $(wine64_disable)winecfg
|
||||
|
|
|
@ -14,4 +14,4 @@ RC_SRCS = wineconsole.rc
|
|||
|
||||
MANPAGES = wineconsole.man.in
|
||||
|
||||
INSTALL_LIB = wineconsole.exe wineconsole
|
||||
INSTALL_LIB = wineconsole.exe $(wine64_disable)wineconsole
|
||||
|
|
|
@ -35,4 +35,4 @@ BISON_SRCS = dbg.y
|
|||
|
||||
MANPAGES = winedbg.man.in
|
||||
|
||||
INSTALL_LIB = winedbg.exe winedbg
|
||||
INSTALL_LIB = winedbg.exe $(wine64_disable)winedbg
|
||||
|
|
|
@ -13,4 +13,4 @@ MANPAGES = winefile.man.in
|
|||
|
||||
SVG_SRCS = winefile.svg
|
||||
|
||||
INSTALL_LIB = winefile.exe winefile
|
||||
INSTALL_LIB = winefile.exe $(wine64_disable)winefile
|
||||
|
|
|
@ -13,4 +13,4 @@ MANPAGES = winemine.man.in
|
|||
|
||||
SVG_SRCS = winemine.svg
|
||||
|
||||
INSTALL_LIB = winemine.exe winemine
|
||||
INSTALL_LIB = winemine.exe $(wine64_disable)winemine
|
||||
|
|
|
@ -5,4 +5,4 @@ C_SRCS = winepath.c
|
|||
|
||||
MANPAGES = winepath.man.in
|
||||
|
||||
INSTALL_LIB = winepath.exe winepath
|
||||
INSTALL_LIB = winepath.exe $(wine64_disable)winepath
|
||||
|
|
Loading…
Reference in New Issue