]> sigrok.org Git - sigrok-util.git/commitdiff
sigrok-cross-android: libsigrok: Drop LDFLAGS/CPPFLAGS.
authorUwe Hermann <redacted>
Fri, 30 Aug 2013 18:35:12 +0000 (20:35 +0200)
committerUwe Hermann <redacted>
Fri, 30 Aug 2013 18:51:45 +0000 (20:51 +0200)
These are not needed, libsigrok's configure script finds everything
correctly via pkg-config now.

cross-compile/android/sigrok-cross-android

index fdc210fc193bfed721960d1f5acbf57529cbc4a9..77c40e334b29af9bac19bcd5335f1b49368abccf 100755 (executable)
@@ -52,14 +52,14 @@ SF_MIRROR=switch.dl.sourceforge.net
 # We need to find tools in the toolchain and in the install directory.
 export PATH=$PREFIX/bin:$TOOLCHAIN/bin:$PATH
 
-# Tell pkg-config to only look for our cross-built stuff
+# Tell pkg-config to only look for our cross-built stuff.
 export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
 export -n PKG_CONFIG_PATH
 
 # Define some helper variables.
 C="--host=arm-linux-androideabi --prefix=$PREFIX"
 
-# Remember the directory we're in
+# Remember the directory we're in.
 case "$0" in
   /*) TOP=$(dirname "$0");;
   *) TOP=$(dirname "$(pwd)"/"$0");;
@@ -163,7 +163,7 @@ cd libusb-$VER_LIBUSB
 cp -f ../config/config.guess .
 cp -f ../config/config.sub .
 ./configure $C
-# explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs
+# Explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs.
 make lib_LTLIBRARIES=libusb.la SUBDIRS=.
 make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
 cd ..
@@ -193,7 +193,8 @@ cd ..
 git clone git://sigrok.org/libsigrok
 cd libsigrok
 ./autogen.sh
-LDFLAGS=-L$PREFIX/lib CPPFLAGS="-I$PREFIX/include -I$PREFIX/lib/libzip/include" ./configure $C --disable-alsa
+./configure $C --disable-alsa
 make
 make install
 cd ..
+