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
7b7444fb
Commit
7b7444fb
authored
Feb 03, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Simplify the installation of program binaries by not attempting to hardlink them.
parent
bdebad09
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
49 deletions
+4
-49
Make.rules.in
Make.rules.in
+0
-1
aclocal.m4
aclocal.m4
+0
-17
configure
configure
+0
-17
configure.ac
configure.ac
+0
-1
Makefile.in
programs/Makefile.in
+4
-13
No files found.
Make.rules.in
View file @
7b7444fb
...
...
@@ -40,7 +40,6 @@ AR = @AR@
ARFLAGS = @ARFLAGS@
RANLIB = @RANLIB@
STRIP = @STRIP@
LN = @LN@
LN_S = @LN_S@
TOOLSDIR = @TOOLSDIR@
LDFLAGS = @LDFLAGS@
...
...
aclocal.m4
View file @
7b7444fb
...
...
@@ -118,23 +118,6 @@ LIBS="$LIBS $2"
AC_CHECK_FUNCS([$1],[$3],[$4])
LIBS="$ac_wine_check_funcs_save_LIBS"])
dnl **** Check for ln ****
dnl
dnl Usage: WINE_PROG_LN
dnl
AC_DEFUN([WINE_PROG_LN],
[AC_MSG_CHECKING([whether ln works])
rm -f conf$$ conf$$.file
echo >conf$$.file
if ln conf$$.file conf$$ 2>/dev/null; then
AC_SUBST(LN,ln)
AC_MSG_RESULT([yes])
else
AC_SUBST(LN,["cp -p"])
AC_MSG_RESULT([no, using $LN])
fi
rm -f conf$$ conf$$.file])
dnl **** Check for a mingw program, trying the various mingw prefixes ****
dnl
dnl Usage: WINE_CHECK_MINGW_PROG(variable,prog,[value-if-not-found],[path])
...
...
configure
View file @
7b7444fb
...
...
@@ -694,7 +694,6 @@ INSTALL_PROGRAM
LDCONFIG
EGREP
GREP
LN
LN_S
STRIP
RANLIB
...
...
@@ -4572,22 +4571,6 @@ else
$as_echo
"no, using
$LN_S
"
>
&6
;
}
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking whether ln works"
>
&5
$as_echo_n
"checking whether ln works... "
>
&6
;
}
rm
-f
conf
$$
conf
$$
.file
echo
>
conf
$$
.file
if
ln
conf
$$
.file conf
$$
2>/dev/null
;
then
LN
=
ln
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
$as_echo
"yes"
>
&6
;
}
else
LN
=
"cp -p"
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no, using
$LN
"
>
&5
$as_echo
"no, using
$LN
"
>
&6
;
}
fi
rm
-f
conf
$$
conf
$$
.file
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for grep that handles long lines and -e"
>
&5
$as_echo_n
"checking for grep that handles long lines and -e... "
>
&6
;
}
if
test
"
${
ac_cv_path_GREP
+set
}
"
=
set
;
then
:
...
...
configure.ac
View file @
7b7444fb
...
...
@@ -246,7 +246,6 @@ AC_SUBST(ARFLAGS,rc)
AC_PROG_RANLIB
AC_CHECK_TOOL(STRIP,strip,strip)
AC_PROG_LN_S
WINE_PROG_LN
AC_PROG_EGREP
AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
AC_PROG_INSTALL
...
...
programs/Makefile.in
View file @
7b7444fb
...
...
@@ -20,25 +20,16 @@ wineapploader: wineapploader.in
# Rules for installation
.PHONY
:
install-
apploader install-
progs install-progs.so $(INSTALLPROGS:%=%/__installprog__)
.PHONY
:
install-progs install-progs.so $(INSTALLPROGS:%=%/__installprog__)
install-apploader
:
wineapploader $(INSTALLDIRS) dummy
$(INSTALL_SCRIPT)
wineapploader
$(DESTDIR)$(bindir)
/wineapploader
$(INSTALLPROGS
:
%=%/__installprog__): install-apploader
$(RM)
$(DESTDIR)$(bindir)
/
`
dirname
$@
`
&&
$(LN)
$(DESTDIR)$(bindir)
/wineapploader
$(DESTDIR)$(bindir)
/
`
dirname
$@
`
$(INSTALLPROGS
:
%=%/__installprog__): wineapploader $(INSTALLDIRS) dummy
$(RM)
$(DESTDIR)$(bindir)
/
`
dirname
$@
`
&&
$(INSTALL_SCRIPT)
wineapploader
$(DESTDIR)$(bindir)
/
`
dirname
$@
`
install-progs.so
:
$(INSTALLPROGS:%=%/__installprog__)
$(RM)
$(DESTDIR)$(bindir)
/wineapploader
install-progs
:
#
nothing to do here
@WOW64_DISABLE@ install install-lib
::
install-progs$(DLLEXT) $(INSTALLDIRS)
uninstall
::
-
cd
$(DESTDIR)$(bindir)
&&
$(RM)
wineapploader
$(INSTALLPROGS)
-
cd
$(DESTDIR)$(bindir)
&&
$(RM)
$(INSTALLPROGS)
-
rmdir
$(DESTDIR)$(fakedlldir)
$(DESTDIR)$(dlldir)
# Rules for testing
check test
::
$(SUBDIRS:%=%/__test__)
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