From: mb Date: Sat, 9 Oct 2010 11:05:26 +0000 (+0000) Subject: sablevm-sdk: Do not hardcode host paths. X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=63f60b5a303ed03ff5c60f35ae2d3eadce572556;p=packages.git sablevm-sdk: Do not hardcode host paths. git-svn-id: svn://svn.openwrt.org/openwrt/packages@23358 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/lang/sablevm-sdk/Makefile b/lang/sablevm-sdk/Makefile index 94174b11c..53497927d 100644 --- a/lang/sablevm-sdk/Makefile +++ b/lang/sablevm-sdk/Makefile @@ -64,8 +64,8 @@ define Build/Configure ) $(call Build/Configure/Default, \ --srcdir="./../sablevm" \ - --with-fastjar=/usr/bin/fastjar \ - --with-jikes=/usr/bin/jikes \ + --with-fastjar=$$$$(which fastjar) \ + --with-jikes=$$$$(which jikes) \ --with-internal-libffi=yes \ --with-internal-libpopt=no \ ,\ @@ -74,8 +74,8 @@ define Build/Configure ) $(call Build/Configure/Default, \ --srcdir=./../sablevm-classpath \ - --with-fastjar=/usr/bin/fastjar \ - --with-jikes=/usr/bin/jikes \ + --with-fastjar=$$$$(which fastjar) \ + --with-jikes=$$$$(which jikes) \ --disable-gtk-peer \ --disable-gtk-cairo \ --without-x \