Skip to content

Commit

Permalink
Fix build scripts ..
Browse files Browse the repository at this point in the history
  • Loading branch information
sgothel committed Feb 15, 2014
1 parent c7087dd commit 04a46e2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
6 changes: 4 additions & 2 deletions make/scripts/make.joal.all.android-armv6-cross.sh
@@ -1,7 +1,9 @@
#! /bin/sh

if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/setenv-build-jogl-x86_64.sh
SDIR=`dirname $0`

if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh
fi

export NODE_LABEL=.
Expand Down
4 changes: 2 additions & 2 deletions make/scripts/make.joal.all.linux-armv6-cross.sh
Expand Up @@ -2,8 +2,8 @@

SDIR=`dirname $0`

if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/setenv-build-jogl-x86_64.sh
if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh
fi

PATH=`pwd`/../../gluegen/make/lib/toolchain/armsf-linux-gnueabi/bin:$PATH
Expand Down
4 changes: 2 additions & 2 deletions make/scripts/make.joal.all.linux-armv6hf-cross.sh
Expand Up @@ -2,8 +2,8 @@

SDIR=`dirname $0`

if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/setenv-build-jogl-x86_64.sh
if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh
fi

PATH=`pwd`/../../gluegen/make/lib/toolchain/armhf-linux-gnueabi/bin:$PATH
Expand Down
4 changes: 2 additions & 2 deletions make/scripts/make.joal.all.linux-armv6hf.sh
Expand Up @@ -2,8 +2,8 @@

SDIR=`dirname $0`

if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/setenv-build-jogl-x86_64.sh
if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh
fi

if [ -z "$ANT_PATH" ] ; then
Expand Down
4 changes: 2 additions & 2 deletions make/scripts/make.joal.all.linux-x86_64-clang.sh
Expand Up @@ -2,8 +2,8 @@

SDIR=`dirname $0`

if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/setenv-build-jogl-x86_64.sh
if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh
fi

if [ -z "$ANT_PATH" ] ; then
Expand Down
4 changes: 2 additions & 2 deletions make/scripts/make.joal.all.linux-x86_64.sh
Expand Up @@ -2,8 +2,8 @@

SDIR=`dirname $0`

if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/setenv-build-jogl-x86_64.sh
if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh
fi

if [ -z "$ANT_PATH" ] ; then
Expand Down

0 comments on commit 04a46e2

Please sign in to comment.