Skip to content
Snippets Groups Projects
Commit 4cd31e42 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed installation issues caused by new configure script.

parent 70437035
No related branches found
No related tags found
No related merge requests found
......@@ -84,9 +84,11 @@ Make.rules: Make.rules.in configure
wine: dlls $(EMUOBJS)
$(CC) -o wine $(EMUOBJS) -L$(DLLDIR) $(IMPORTS:%=-l%) $(LIBWINE) $(LIBUNICODE) $(LIBS) $(LDFLAGS)
install:: all $(INSTALLSUBDIRS:%=%/__install__)
install_wine:
[ -d $(bindir) ] || $(MKDIR) $(bindir)
$(INSTALL_PROGRAM) wine $(bindir)/wine
install:: all install_wine $(INSTALLSUBDIRS:%=%/__install__)
-$(LDCONFIG)
uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
......
This diff is collapsed.
......@@ -510,9 +510,6 @@ then
AC_DEFINE(HAVE_OSS_MIDI, 1, [Define if you have the Open Sound system (MIDI interface)])
fi
dnl **** If ln -s doesn't work, use cp instead ****
if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
dnl **** Check for broken glibc mmap64 ****
AC_CACHE_CHECK( [whether mmap64 works defined as mmap], ac_cv_mmap64_works,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment