nodejs: use the standard configure/make options

Also cleanup leading whitespace.

Note that overloading LD in required to avoid linker failures.

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Samuel Martin 2014-04-15 00:09:47 +02:00 committed by Thomas Petazzoni
parent 8813aa2f89
commit bde585518e
1 changed files with 9 additions and 3 deletions

View File

@ -23,7 +23,8 @@ define HOST_NODEJS_CONFIGURE_CMDS
# NPM is non-functional without it, and host-openssl isn't part of
# buildroot.
(cd $(@D); \
./configure \
$(HOST_CONFIGURE_OPTS) \
./configure \
--prefix=$(HOST_DIR)/usr \
--without-snapshot \
--without-dtrace \
@ -75,7 +76,9 @@ define NODEJS_CONFIGURE_CMDS
endef
define NODEJS_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
$(TARGET_CONFIGURE_OPTS) \
LD="$(TARGET_CXX)"
endef
#
@ -107,7 +110,10 @@ endef
endif
define NODEJS_INSTALL_TARGET_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) DESTDIR=$(TARGET_DIR) install
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install \
DESTDIR=$(TARGET_DIR) \
$(TARGET_CONFIGURE_OPTS) \
LD="$(TARGET_CXX)"
$(NODEJS_INSTALL_MODULES)
endef