From 2f7867074893830f6c62b052e9a40f7a30018257 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 15 Aug 2020 22:45:40 -0700 Subject: [PATCH] python3: fix rebasing error Signed-off-by: Rosen Penev --- lang/python/python3-host.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lang/python/python3-host.mk b/lang/python/python3-host.mk index 0c16d6cc2..4de026ac6 100644 --- a/lang/python/python3-host.mk +++ b/lang/python/python3-host.mk @@ -50,7 +50,8 @@ define host_python3_settings LDSHARED="$(HOSTCC) -shared" \ CFLAGS="$(HOST_CFLAGS)" \ CPPFLAGS="$(HOST_CPPFLAGS) -I$(HOST_PYTHON3_INC_DIR)" \ - LDFLAGS="$(HOST_LDFLAGS) -lpython$(PYTHON3_VERSION) -Wl$(comma)-rpath$(comma)$(STAGING_DIR_HOSTPKG)/lib" \ + LDFLAGS="$(HOST_LDFLAGS) -lpython$(PYTHON3_VERSION) -Wl$(comma)-rpath$(comma)$(STAGING_DIR_HOSTPKG)/lib" +endef # $(1) => commands to execute before running pythons script # $(2) => python script and its arguments