Skip to content

Commit

Permalink
Removed arguments to make
Browse files Browse the repository at this point in the history
  • Loading branch information
hyades committed Aug 27, 2013
1 parent 03ec71a commit e8f88f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -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:
Expand Down
9 changes: 8 additions & 1 deletion scripts/apps/app_stage.sh
Expand Up @@ -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
}

Expand Down

0 comments on commit e8f88f0

Please sign in to comment.