forked from intel/cc-oci-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install: Extract autoconf-archive install to separate script
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
Showing
2 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters