Skip to content

Commit

Permalink
install: Extract autoconf-archive install to separate script
Browse files Browse the repository at this point in the history
Under some circumstances it is needed to 'hand install' the m4
scripts. This was done in the rhel install script, but sometimes
it is really useful to be able to do that by hand, so extract the
relevant commands into their own script (to allow hand running),
and get the rhel script to invoke that new script at the appropriate
time.

Fixes: intel#875

Signed-off-by: Graham Whaley <[email protected]>
  • Loading branch information
Graham Whaley committed Jun 30, 2017
1 parent ba52fd8 commit 82cfb1f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 6 deletions.
33 changes: 33 additions & 0 deletions installation/curl-autoconf-archive.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/bin/bash

# This file is part of cc-oci-runtime.
#
# Copyright (C) 2017 Intel Corporation
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

# Description: This script downloads and installs the autoconf-archive macros
# necessary to configure this project. This is invoked for distro builds where
# the necessary package is not available to install, and is also useful to
# hand run under certain circumstances.
# Should be run from the top level directory
#

# autoconf-archive url
autoconf_archive_url="http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4"
mkdir -p m4/
# curl the required autoconf archive files into the correct place
curl -L "${autoconf_archive_url}/ax_code_coverage.m4" -o m4/ax_code_coverage.m4
curl -L "${autoconf_archive_url}/ax_valgrind_check.m4" -o m4/ax_valgrind_check.m4
9 changes: 3 additions & 6 deletions installation/rhel-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,12 @@ cor=github.com/01org/cc-oci-runtime
# Currently it is the latest version for cc-oci-runtime
commit=tags/2.1.9
release=${commit##*/}
# autoconf-archive url
autoconf_archive_url="http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4"
go get "$cor"
pushd "$GOPATH/src/$cor"
git checkout -b "$release" "$commit"
mkdir -p m4/
# autoconf-archive package does not exist in RHEL we need to download all m4 files required
curl -L "${autoconf_archive_url}/ax_code_coverage.m4" -o m4/ax_code_coverage.m4
curl -L "${autoconf_archive_url}/ax_valgrind_check.m4" -o m4/ax_valgrind_check.m4
# autoconf-archive package does not exist in RHEL we need to download all m4
# files required
source "${SCRIPT_PATH}/curl-autoconf-archive.sh"
./autogen.sh \
--prefix="${prefix_dir}" \
--disable-tests \
Expand Down

0 comments on commit 82cfb1f

Please sign in to comment.