10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-01 02:45:29 +02:00
quantum_package/install/scripts/install_m4.sh

16 lines
202 B
Bash
Raw Normal View History

2015-06-05 22:33:19 +02:00
#!/bin/bash -x
TARGET=m4
function _install()
{
cd ..
2015-06-08 14:49:10 +02:00
QP_ROOT=$PWD
2015-06-05 22:33:19 +02:00
cd -
cd ${BUILD}
./configure && make || exit 1
2015-06-08 14:49:10 +02:00
ln -sf ${PWD}/src/m4 ${QP_ROOT}/bin || exit 1
2015-06-05 22:33:19 +02:00
}
source scripts/build.sh