diff options
author | Olivier Fourdan <ofourdan@redhat.com> | 2014-12-03 13:49:37 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-01-04 16:51:19 -0800 |
commit | 3573855514557a518de40a93b3c578f28c7d9c2b (patch) | |
tree | 96096ac46911630bc40272d8facdb681cc393c58 | |
parent | de89c6b8c6e81bad131c7f432e355cb42d233e87 (diff) |
Remove explicit dependency on $(WAYLAND_LIBS)
Xwayland Makefile explicitely set its dependencies on
WAYLAND_LIBS. If the ibrairies are installed in a non-standard
path, WAYLAND_LIBS contains '-L/path/to/the/lib' which will fail
at build time with:
"No rule to make target '-L/path/to/the/lib', needed by 'Xwayland'.
Stop"
Remove that explicit dependency to avoid the problem (LDADD ought
to be enough to get the right libraries linked).
Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | hw/xwayland/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/xwayland/Makefile.am b/hw/xwayland/Makefile.am index 4e0e1bb00..994554088 100644 --- a/hw/xwayland/Makefile.am +++ b/hw/xwayland/Makefile.am @@ -26,7 +26,6 @@ Xwayland_LDADD = \ $(XWAYLAND_LIBS) \ $(XWAYLAND_SYS_LIBS) \ $(XSERVER_SYS_LIBS) -Xwayland_DEPENDENCIES = $(XWAYLAND_LIBS) Xwayland_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG) |