Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions builds/cmake/install-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ main()
if [[ -z "${BUILD_LINK}" ]]; then
msg_verbose "No build-link specified."
elif [[ "${BUILD_LINK}" != "dynamic" ]] && [[ "${BUILD_LINK}" != "static" ]]; then
msg_error "Provided build-link ${BUILD_LINK}' not a valid value."
msg_error "Provided build-link '${BUILD_LINK}' not a valid value."
help
exit 1
fi
Expand Down Expand Up @@ -315,7 +315,7 @@ main()
export CFLAGS="${BUILD_FLAGS}"
msg_verbose "Exporting CFLAGS '${CFLAGS}'"
else
msg_verbose "CFLAGS intitally '${CFLAGS}'"
msg_verbose "CFLAGS initially '${CFLAGS}'"
SANITIZED_CFLAGS=$(strip_optimization "$CFLAGS")
export CFLAGS="${SANITIZED_CFLAGS} ${BUILD_FLAGS}"
msg_verbose "CFLAGS modified to '${CFLAGS}'"
Expand All @@ -325,7 +325,7 @@ main()
export CXXFLAGS="${BUILD_FLAGS}"
msg_verbose "Exporting CXXFLAGS '${CXXFLAGS}'"
else
msg_verbose "CXXFLAGS intitally '${CXXFLAGS}'"
msg_verbose "CXXFLAGS initially '${CXXFLAGS}'"
SANITIZED_CXXFLAGS=$(strip_optimization "$CXXFLAGS")
export CXXFLAGS="${SANITIZED_CXXFLAGS} ${BUILD_FLAGS}"
msg_verbose "CXXFLAGS modified to '${CXXFLAGS}'"
Expand Down Expand Up @@ -501,7 +501,7 @@ source_archive()
fi

if [ -d "${PROJECT}" ]; then
msg_warn "Encounted existing '${PROJECT}' directory, removing..."
msg_warn "Encountered existing '${PROJECT}' directory, removing..."
remove_directory_force "${PROJECT}"
fi

Expand Down Expand Up @@ -556,7 +556,7 @@ source_github()
fi

if [ -d "${REPOSITORY}" ]; then
msg_warn "Encounted existing '${REPOSITORY}' directory, removing..."
msg_warn "Encountered existing '${REPOSITORY}' directory, removing..."
remove_directory_force "${REPOSITORY}"
fi

Expand Down Expand Up @@ -592,7 +592,7 @@ install_make()
pop_directory # BUILD_OBJ_DIR
pop_directory # BUILD_SRC_DIR/PROJECT

msg_success "'${PROJECT}' installation compelete."
msg_success "'${PROJECT}' installation complete."
}

test_make()
Expand Down Expand Up @@ -636,7 +636,7 @@ test_make()
pop_directory # BUILD_OBJ_DIR
pop_directory # BUILD_SRC_DIR/PROJECT

msg_success "'${PROJECT}' test compelete."
msg_success "'${PROJECT}' test complete."
}

build_boost()
Expand Down Expand Up @@ -692,7 +692,7 @@ build_boost()
msg "-sNO_BZIP2 : 1"
msg "-sNO_ZSTD : 1"
msg "-j : ${PARALLEL}"
msg "-d0 : [supress informational messages]"
msg "-d0 : [suppress informational messages]"
msg "-q : [stop at the first error]"
msg "--reconfigure : [ignore cached configuration]"
msg "--prefix : ${PREFIX}"
Expand Down
16 changes: 8 additions & 8 deletions builds/cmake/install-presets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ main()
if [[ -z "${BUILD_LINK}" ]]; then
msg_verbose "No build-link specified."
elif [[ "${BUILD_LINK}" != "dynamic" ]] && [[ "${BUILD_LINK}" != "static" ]]; then
msg_error "Provided build-link ${BUILD_LINK}' not a valid value."
msg_error "Provided build-link '${BUILD_LINK}' not a valid value."
help
exit 1
fi
Expand Down Expand Up @@ -336,7 +336,7 @@ main()
export CFLAGS="${BUILD_FLAGS}"
msg_verbose "Exporting CFLAGS '${CFLAGS}'"
else
msg_verbose "CFLAGS intitally '${CFLAGS}'"
msg_verbose "CFLAGS initially '${CFLAGS}'"
SANITIZED_CFLAGS=$(strip_optimization "$CFLAGS")
export CFLAGS="${SANITIZED_CFLAGS} ${BUILD_FLAGS}"
msg_verbose "CFLAGS modified to '${CFLAGS}'"
Expand All @@ -346,7 +346,7 @@ main()
export CXXFLAGS="${BUILD_FLAGS}"
msg_verbose "Exporting CXXFLAGS '${CXXFLAGS}'"
else
msg_verbose "CXXFLAGS intitally '${CXXFLAGS}'"
msg_verbose "CXXFLAGS initially '${CXXFLAGS}'"
SANITIZED_CXXFLAGS=$(strip_optimization "$CXXFLAGS")
export CXXFLAGS="${SANITIZED_CXXFLAGS} ${BUILD_FLAGS}"
msg_verbose "CXXFLAGS modified to '${CXXFLAGS}'"
Expand Down Expand Up @@ -522,7 +522,7 @@ source_archive()
fi

if [ -d "${PROJECT}" ]; then
msg_warn "Encounted existing '${PROJECT}' directory, removing..."
msg_warn "Encountered existing '${PROJECT}' directory, removing..."
remove_directory_force "${PROJECT}"
fi

Expand Down Expand Up @@ -577,7 +577,7 @@ source_github()
fi

if [ -d "${REPOSITORY}" ]; then
msg_warn "Encounted existing '${REPOSITORY}' directory, removing..."
msg_warn "Encountered existing '${REPOSITORY}' directory, removing..."
remove_directory_force "${REPOSITORY}"
fi

Expand Down Expand Up @@ -613,7 +613,7 @@ install_make()
pop_directory # BUILD_OBJ_DIR
pop_directory # BUILD_SRC_DIR/PROJECT

msg_success "'${PROJECT}' installation compelete."
msg_success "'${PROJECT}' installation complete."
}

test_make()
Expand Down Expand Up @@ -657,7 +657,7 @@ test_make()
pop_directory # BUILD_OBJ_DIR
pop_directory # BUILD_SRC_DIR/PROJECT

msg_success "'${PROJECT}' test compelete."
msg_success "'${PROJECT}' test complete."
}

build_boost()
Expand Down Expand Up @@ -713,7 +713,7 @@ build_boost()
msg "-sNO_BZIP2 : 1"
msg "-sNO_ZSTD : 1"
msg "-j : ${PARALLEL}"
msg "-d0 : [supress informational messages]"
msg "-d0 : [suppress informational messages]"
msg "-q : [stop at the first error]"
msg "--reconfigure : [ignore cached configuration]"
msg "--prefix : ${PREFIX}"
Expand Down
16 changes: 8 additions & 8 deletions builds/gnu/install-gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ main()
if [[ -z "${BUILD_LINK}" ]]; then
msg_verbose "No build-link specified."
elif [[ "${BUILD_LINK}" != "dynamic" ]] && [[ "${BUILD_LINK}" != "static" ]]; then
msg_error "Provided build-link ${BUILD_LINK}' not a valid value."
msg_error "Provided build-link '${BUILD_LINK}' not a valid value."
help
exit 1
fi
Expand Down Expand Up @@ -294,7 +294,7 @@ main()
export CFLAGS="${BUILD_FLAGS}"
msg_verbose "Exporting CFLAGS '${CFLAGS}'"
else
msg_verbose "CFLAGS intitally '${CFLAGS}'"
msg_verbose "CFLAGS initially '${CFLAGS}'"
SANITIZED_CFLAGS=$(strip_optimization "$CFLAGS")
export CFLAGS="${SANITIZED_CFLAGS} ${BUILD_FLAGS}"
msg_verbose "CFLAGS modified to '${CFLAGS}'"
Expand All @@ -304,7 +304,7 @@ main()
export CXXFLAGS="${BUILD_FLAGS}"
msg_verbose "Exporting CXXFLAGS '${CXXFLAGS}'"
else
msg_verbose "CXXFLAGS intitally '${CXXFLAGS}'"
msg_verbose "CXXFLAGS initially '${CXXFLAGS}'"
SANITIZED_CXXFLAGS=$(strip_optimization "$CXXFLAGS")
export CXXFLAGS="${SANITIZED_CXXFLAGS} ${BUILD_FLAGS}"
msg_verbose "CXXFLAGS modified to '${CXXFLAGS}'"
Expand Down Expand Up @@ -490,7 +490,7 @@ source_archive()
fi

if [ -d "${PROJECT}" ]; then
msg_warn "Encounted existing '${PROJECT}' directory, removing..."
msg_warn "Encountered existing '${PROJECT}' directory, removing..."
remove_directory_force "${PROJECT}"
fi

Expand Down Expand Up @@ -545,7 +545,7 @@ source_github()
fi

if [ -d "${REPOSITORY}" ]; then
msg_warn "Encounted existing '${REPOSITORY}' directory, removing..."
msg_warn "Encountered existing '${REPOSITORY}' directory, removing..."
remove_directory_force "${REPOSITORY}"
fi

Expand Down Expand Up @@ -581,7 +581,7 @@ install_make()
pop_directory # BUILD_OBJ_DIR
pop_directory # BUILD_SRC_DIR/PROJECT

msg_success "'${PROJECT}' installation compelete."
msg_success "'${PROJECT}' installation complete."
}

test_make()
Expand Down Expand Up @@ -625,7 +625,7 @@ test_make()
pop_directory # BUILD_OBJ_DIR
pop_directory # BUILD_SRC_DIR/PROJECT

msg_success "'${PROJECT}' test compelete."
msg_success "'${PROJECT}' test complete."
}

build_boost()
Expand Down Expand Up @@ -681,7 +681,7 @@ build_boost()
msg "-sNO_BZIP2 : 1"
msg "-sNO_ZSTD : 1"
msg "-j : ${PARALLEL}"
msg "-d0 : [supress informational messages]"
msg "-d0 : [suppress informational messages]"
msg "-q : [stop at the first error]"
msg "--reconfigure : [ignore cached configuration]"
msg "--prefix : ${PREFIX}"
Expand Down