Skip to content

Commit 3e5f189

Browse files
author
Damian Rouson
committed
adjust for & mv install_prerquisites prerequisites
1 parent 4c10d73 commit 3e5f189

28 files changed

+9
-9
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*.md text
1111
*.txt text
1212
*.sh text
13-
install_prerequisites/build text
13+
prerequisites/build text
1414
*.cu text
1515
*.x64 text
1616

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ install:
116116
elif [[ "X$BUILD_TYPE" != "XInstallScript" ]]; then # Ubuntu on Travis-CI, NOT testing install.sh
117117
if ! ( [[ -x "$HOME/.local/bin/mpif90" ]] && [[ -x "$HOME/.local/bin/mpicc" ]] ); then
118118
# mpich install not cached
119-
# could use install_prerequisites/build instead...
119+
# could use prerequisites/build instead...
120120
wget "${MPICH_URL_HEAD}/${MPICH_URL_TAIL}"
121121
mv "$MPICH_URL_TAIL" "$MPICH_DIR/.."
122122
pushd "$MPICH_DIR/.."

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ endif()
105105
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
106106

107107
add_subdirectory(src)
108-
add_subdirectory(install_prerequisites)
108+
add_subdirectory(prerequisites)
109109

110110
#-----------------------------------------------------
111111
# Publicize installed location to other CMake projects

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ the [Installation Script] section. Or try building each prerequisite from sourc
203203
follows:
204204

205205
```
206-
cd install_prerequisites
206+
cd prerequisites
207207
CC=gcc FC=gfortran CXX=g++ ./build flex
208208
./build gcc
209209
CC=gcc FC=gfortran CXX=g++ ./build mpich
@@ -235,7 +235,7 @@ where the second line builds the flex package that is required for building gcc
235235
[Issues]: https://github.com/sourceryinstitute/opencoarrays/issues
236236
[make.inc]: ./src/make.inc
237237
[opencoarrays]: ./src/extensions/opencoarrays.F90
238-
[install_prerequisites]: ./install_prerequisites
238+
[prerequisites]: ./prerequisites
239239
[MPICH]: http://www.mpich.org
240240
[MVAPICH]:http://mvapich.cse.ohio-state.edu
241241
[MacPorts]: http://www.macports.org

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ if [[ "$directory_exists" == "false" ]]; then
9191
fi
9292

9393
build_path=$opencoarrays_src_dir/opencoarrays-build
94-
build_script=$opencoarrays_src_dir/install_prerequisites/build
94+
build_script=$opencoarrays_src_dir/prerequisites/build
9595
if [[ ! -x "$build_script" ]]; then
9696
echo "$this_script: $build_script script does not exist or the user lacks executable permission for it."
9797
echo "$this_script: Please run this_script in the top-level OpenCoarrays source directory or set the"
@@ -124,7 +124,7 @@ usage()
124124
}
125125

126126
# Include stack management functions
127-
. ./install_prerequisites/stack.sh
127+
. ./prerequisites/stack.sh
128128
stack_new dependency_pkg
129129
stack_new dependency_exe
130130
stack_new dependency_path
@@ -741,7 +741,7 @@ print_header()
741741
popd > /dev/null
742742
echo ""
743743
echo "*** All prerequisites will be downloaded to, built in, and installed in ***"
744-
echo "$opencoarrays_src_dir/install_prerequisites"
744+
echo "$opencoarrays_src_dir/prerequisites"
745745
printf "*** OpenCoarrays will be installed "
746746
if [[ "$install_path" == "$opencoarrays_src_dir/opencoarrays-installation" ]]; then
747747
printf "in the above location also. ***\n"
@@ -922,7 +922,7 @@ elif [[ $1 == '-v' || $1 == '-V' || $1 == '--version' ]]; then
922922
echo ""
923923
else # Find or install prerequisites and install OpenCoarrays
924924

925-
cd install_prerequisites &&
925+
cd prerequisites &&
926926
installation_record=install-opencoarrays.log &&
927927
. set_SUDO.sh &&
928928
set_SUDO_if_necessary &&
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)