diff options
| author | Florian Fainelli | 2007-10-03 09:44:16 +0000 |
|---|---|---|
| committer | Florian Fainelli | 2007-10-03 09:44:16 +0000 |
| commit | d02f1af6439fed3614a5516989be87450d9dab6a (patch) | |
| tree | f58aa12a2996aab439cd03819367564d37c87a5e | |
| parent | 99fafff5005bbd868b38399cdf1e9e0b9568c451 (diff) | |
| download | archive-d02f1af6439fed3614a5516989be87450d9dab6a.tar.gz | |
Do not override CXX by using Build/Compile/Default, thanks {Nico}
SVN-Revision: 9111
| -rw-r--r-- | lang/urbi/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/urbi/Makefile b/lang/urbi/Makefile index 1e75f0a8d7..34d893594c 100644 --- a/lang/urbi/Makefile +++ b/lang/urbi/Makefile @@ -38,10 +38,10 @@ CONFIGURE_VARS += \ EXAMPLES=0 \ define Build/Compile - $(call Build/Compile/Default,\ + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ DESTDIR="$(PKG_INSTALL_DIR)" \ - all install \ - ) + all install endef define Build/InstallDev |