21 lines
445 B
Bash
Executable File
21 lines
445 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# $1 Path to the new version.
|
|
# $2 Path to the old version.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
# if called from the external_updater, change to the new dir first
|
|
if [ "$1" != "" ]; then
|
|
cd "$1"
|
|
fi
|
|
|
|
autoreconf -i && ./configure --disable-shared --enable-cxx17
|
|
|
|
# if called from the external_updater, do not apply any patches as it will do
|
|
# that for us, otherwise do if there are any
|
|
if [ "$2" == "" -a -d patches/ ]; then
|
|
git apply patches/*
|
|
fi
|