diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2009-10-15 01:53:42 -0500 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-10-15 08:06:46 -0700 |
commit | a2f27b97900f335cd5f6a3e5bf8fa1d0ec9eb9ac (patch) | |
tree | c825e9246b36168de87e0468ae7d6c7c7efcd821 /hw | |
parent | ed4c6bc79a797830895ad6c3601318b2d1c4bdcb (diff) |
Remove duplicates from Xfake_LDADD
KDRIVE_LIBS already contains the libs in XSERVER_LIBS, so linking against
both leads to multiple-definition errors when linking on Cygwin.
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/kdrive/fake/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/kdrive/fake/Makefile.am b/hw/kdrive/fake/Makefile.am index 8b93e9e2f..71b24b7e6 100644 --- a/hw/kdrive/fake/Makefile.am +++ b/hw/kdrive/fake/Makefile.am @@ -18,8 +18,7 @@ Xfake_SOURCES = \ Xfake_LDADD = \ libfake.la \ - @KDRIVE_LIBS@ \ - @XSERVER_LIBS@ + @KDRIVE_LIBS@ Xfake_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG) -Wl,-undefined=InitExtensions |