removed custom prefix from jenkinsfile configure

This commit is contained in:
kevlar 2018-03-06 09:06:30 -08:00
parent d3c78c3a7a
commit a4ed968979

2
Jenkinsfile vendored
View file

@ -4,7 +4,7 @@ pipeline {
stage('build') {
steps {
sh './bootstrap.sh'
sh './configure --prefix=/tmp/core_build'
sh './configure'
sh 'make'
sh 'make install'
}