From 3a5cdd5aeda3df018675c9dee7ff76343a977ea6 Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Tue, 11 Mar 2008 12:52:40 +0000 Subject: [PATCH] fixed Makefile for cross-compiling in openembedded git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@778 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/binrpcctrl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/plug-in/binrpcctrl/Makefile b/core/plug-in/binrpcctrl/Makefile index 870bbe28..0e8094c0 100644 --- a/core/plug-in/binrpcctrl/Makefile +++ b/core/plug-in/binrpcctrl/Makefile @@ -35,9 +35,9 @@ libbinrpc: $(MAKE) all $(LIBBINRPC_LIB)/libbinrpc.a: - $(MAKE) -C $(LIBBINRPC_DIR) all CC=$(CC) CXX=$(CXX) LD=$(LD) + cd $(LIBBINRPC_DIR) && $(MAKE) all libbinrpc_clean: - $(MAKE) -C $(LIBBINRPC_DIR) clean + cd $(LIBBINRPC_DIR) && $(MAKE) clean include ../Makefile.app_module