From e8f88f0cf79f4f72c733f7e2f3db51ba6297337d Mon Sep 17 00:00:00 2001 From: hyades Date: Mon, 26 Aug 2013 22:47:56 -0700 Subject: [PATCH] Removed arguments to make --- .travis.yml | 1 - scripts/apps/app_stage.sh | 9 ++++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b168c2e..6710b62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,6 @@ before_install: - sudo apt-get build-dep gstreamer1.0 - sudo apt-get install python-gi python3-gi gstreamer1.0-tools gir1.2-gstreamer-1.0 gir1.2-gst-plugins-base-1.0 - sudo apt-get install python-scipy - - export PKG_CONFIG_PATH=$HOME"/gst/stage/lib/pkgconfig" script: diff --git a/scripts/apps/app_stage.sh b/scripts/apps/app_stage.sh index e12c1d5..f8378b4 100644 --- a/scripts/apps/app_stage.sh +++ b/scripts/apps/app_stage.sh @@ -159,7 +159,14 @@ function build-project() exit -1 } make clean || true - make ${options[make-args]} && make ${options[make-args]} install + make || { + printf "make of $project failed!!!\n" + exit -1 + } + make install || { + printf "make of $project failed!!!\n" + exit -1 + } cd $backdir }