* src/lib/Makefile.am:
authorVincent Torri <vincent.torri@gmail.com>
Sat, 21 Jul 2012 18:31:43 +0000 (18:31 +0000)
committerVincent Torri <vincent.torri@gmail.com>
Sat, 21 Jul 2012 18:31:43 +0000 (18:31 +0000)
* src/lib/dlfcn/Makefile.am:
work around a problem with libtool and the creation
of the DLL. libtool developpers should be impaled.

SVN revision: 74285

legacy/evil/ChangeLog
legacy/evil/src/lib/Makefile.am
legacy/evil/src/lib/dlfcn/Makefile.am

index b469a68..0259c41 100644 (file)
@@ -1,3 +1,10 @@
+2012-07-21  Vincent Torri  <doursse at users dot sf dot net>
+
+       * src/lib/Makefile.am:
+       * src/lib/dlfcn/Makefile.am:
+       work around a problem with libtool and the creation
+       of the DLL. libtool developpers should be impaled.
+
 2012-07-20  Vincent Torri  <doursse at users dot sf dot net>
 
        * configure.ac:
index a5a128b..976ee3b 100644 (file)
@@ -83,3 +83,6 @@ else
 libevil_la_LINK = $(CXXLINK) $(libevil_la_LDFLAGS)
 
 endif
+
+install-data-hook:
+       sed -i -e 's/-luuid//g' $(libdir)/$(lib_LTLIBRARIES)
index c9e00da..457bde4 100644 (file)
@@ -13,3 +13,6 @@ libdl_la_CPPFLAGS = @win32_cppflags@ -DEFL_EVIL_DLFCN_BUILD -DPSAPI_VERSION=1
 libdl_la_CFLAGS = @win32_cflags@
 libdl_la_LIBADD = $(top_builddir)/src/lib/libevil.la $(EFL_MPATROL_LIBS) @win32_dl_libs@
 libdl_la_LDFLAGS = -no-undefined -Wl,--enable-auto-import -version-info @version_info@
+
+install-data-hook:
+       sed -i -e 's/-luuid//g' $(libdir)/$(lib_LTLIBRARIES)