Skip to content
Snippets Groups Projects

Resolve L2SDP-855

Merged Pieter Donker requested to merge L2SDP-855 into master
Files
9
+ 46
0
#!/usr/bin/env bash
# set -e
###############################################################################
#
# Copyright (C) 2018
# ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
# P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# $Id$
#
###############################################################################
# read generic functions/definitions
. ${SDPTR_DIR}/generic.sh
sh_info $0 "build sdptr from the git/master repo"
cd ${HOME}/git/sdptr
. ./init_sdptr.sh
sdptr_exec $0 git co master
# first pull latest sdptr version from git
sdptr_exec $0 git pull
# clean all generated files
sh_exec $0 make clean
# configure all make files
sh_exec $0 autoreconf -f -i
sh_exec $0 ./configure
# build again and store output in a log file
sh_exec $0 ./tag_software_version.py
sh_exec $0 make
\ No newline at end of file
Loading