Discussion:
[libdvdcss-devel] [PATCH] Fix broken Makefile causing build failure
Brad Smith
2013-03-11 03:02:28 UTC
Permalink
The 1.2.13 release went out with a broken Makefile due to a typo
in the automake file.


diff --git a/Makefile.am b/Makefile.am
index 25b08fd..5fd4853 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -32,7 +32,7 @@ libdvdcss_la_LDFLAGS = -version-info $(DVDCSS_LTVERSION) $(DVDCSS_LDFLAGS)
libdvdcss_la_LIBADD =

if !SYS_MSVC
-libdvdcss_la_LDFLAGS += = -no-undefined
+libdvdcss_la_LDFLAGS += -no-undefined
endif

csstest_SOURCES = test/csstest.c
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
Diego Biurrun
2013-03-11 09:39:58 UTC
Permalink
Post by Brad Smith
--- a/Makefile.am
+++ b/Makefile.am
@@ -32,7 +32,7 @@ libdvdcss_la_LDFLAGS = -version-info $(DVDCSS_LTVERSION) $(DVDCSS_LDFLAGS)
if !SYS_MSVC
-libdvdcss_la_LDFLAGS += = -no-undefined
+libdvdcss_la_LDFLAGS += -no-undefined
endif
Oooooops, I wonder why nobody spotted that one and why it did not cause
any trouble on our side ...

Patch queued, will push in a bit ...

Diego

Loading...