blob: 82b2790856732ddf37a44d51d7162cb24e8cd652 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001Subject: [PATCH] Fix the make error
2
3Fix the compile error:
4 *** No rule to make target '../librfxcodec/src/.libs/librfxencode.a', needed by 'xrdp'. Stop..
5
6Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
7---
8 xrdp/Makefile.am | 4 ++--
9 1 file changed, 2 insertions(+), 2 deletions(-)
10
11diff --git a/xrdp/Makefile.am b/xrdp/Makefile.am
12index a259ef3..d5505b2 100644
13--- a/xrdp/Makefile.am
14+++ b/xrdp/Makefile.am
15@@ -23,7 +23,7 @@ endif
16 if XRDP_RFXCODEC
17 AM_CPPFLAGS += -DXRDP_RFXCODEC
18 AM_CPPFLAGS += -I$(top_srcdir)/librfxcodec/include
19-XRDP_EXTRA_LIBS += $(top_builddir)/librfxcodec/src/.libs/librfxencode.a
20+XRDP_EXTRA_LIBS += $(top_builddir)/librfxcodec/src/.libs/librfxencode.la
21 endif
22
23 if XRDP_PIXMAN
24@@ -35,7 +35,7 @@ endif
25 if XRDP_PAINTER
26 AM_CPPFLAGS += -DXRDP_PAINTER
27 AM_CPPFLAGS += -I$(top_srcdir)/libpainter/include
28-XRDP_EXTRA_LIBS += $(top_builddir)/libpainter/src/.libs/libpainter.a
29+XRDP_EXTRA_LIBS += $(top_builddir)/libpainter/src/.libs/libpainter.la
30 endif
31
32 sbin_PROGRAMS = \
33--
342.7.4
35