Skip to content

Commit b853cac

Browse files
committed
typo fixes in install messages
1 parent 40547b0 commit b853cac

3 files changed

Lines changed: 24 additions & 24 deletions

File tree

builds/cmake/install-cmake.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ main()
194194
if [[ -z "${BUILD_LINK}" ]]; then
195195
msg_verbose "No build-link specified."
196196
elif [[ "${BUILD_LINK}" != "dynamic" ]] && [[ "${BUILD_LINK}" != "static" ]]; then
197-
msg_error "Provided build-link ${BUILD_LINK}' not a valid value."
197+
msg_error "Provided build-link '${BUILD_LINK}' not a valid value."
198198
help
199199
exit 1
200200
fi
@@ -322,7 +322,7 @@ main()
322322
export CFLAGS="${BUILD_FLAGS}"
323323
msg_verbose "Exporting CFLAGS '${CFLAGS}'"
324324
else
325-
msg_verbose "CFLAGS intitally '${CFLAGS}'"
325+
msg_verbose "CFLAGS initially '${CFLAGS}'"
326326
SANITIZED_CFLAGS=$(strip_optimization "$CFLAGS")
327327
export CFLAGS="${SANITIZED_CFLAGS} ${BUILD_FLAGS}"
328328
msg_verbose "CFLAGS modified to '${CFLAGS}'"
@@ -332,7 +332,7 @@ main()
332332
export CXXFLAGS="${BUILD_FLAGS}"
333333
msg_verbose "Exporting CXXFLAGS '${CXXFLAGS}'"
334334
else
335-
msg_verbose "CXXFLAGS intitally '${CXXFLAGS}'"
335+
msg_verbose "CXXFLAGS initially '${CXXFLAGS}'"
336336
SANITIZED_CXXFLAGS=$(strip_optimization "$CXXFLAGS")
337337
export CXXFLAGS="${SANITIZED_CXXFLAGS} ${BUILD_FLAGS}"
338338
msg_verbose "CXXFLAGS modified to '${CXXFLAGS}'"
@@ -520,7 +520,7 @@ source_archive()
520520
fi
521521

522522
if [ -d "${PROJECT}" ]; then
523-
msg_warn "Encounted existing '${PROJECT}' directory, removing..."
523+
msg_warn "Encountered existing '${PROJECT}' directory, removing..."
524524
remove_directory_force "${PROJECT}"
525525
fi
526526

@@ -575,7 +575,7 @@ source_github()
575575
fi
576576

577577
if [ -d "${REPOSITORY}" ]; then
578-
msg_warn "Encounted existing '${REPOSITORY}' directory, removing..."
578+
msg_warn "Encountered existing '${REPOSITORY}' directory, removing..."
579579
remove_directory_force "${REPOSITORY}"
580580
fi
581581

@@ -611,7 +611,7 @@ install_make()
611611
pop_directory # BUILD_OBJ_DIR
612612
pop_directory # BUILD_SRC_DIR/PROJECT
613613

614-
msg_success "'${PROJECT}' installation compelete."
614+
msg_success "'${PROJECT}' installation complete."
615615
}
616616

617617
test_make()
@@ -655,7 +655,7 @@ test_make()
655655
pop_directory # BUILD_OBJ_DIR
656656
pop_directory # BUILD_SRC_DIR/PROJECT
657657

658-
msg_success "'${PROJECT}' test compelete."
658+
msg_success "'${PROJECT}' test complete."
659659
}
660660

661661
build_boost()
@@ -711,7 +711,7 @@ build_boost()
711711
msg "-sNO_BZIP2 : 1"
712712
msg "-sNO_ZSTD : 1"
713713
msg "-j : ${PARALLEL}"
714-
msg "-d0 : [supress informational messages]"
714+
msg "-d0 : [suppress informational messages]"
715715
msg "-q : [stop at the first error]"
716716
msg "--reconfigure : [ignore cached configuration]"
717717
msg "--prefix : ${PREFIX}"

builds/cmake/install-presets.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ main()
215215
if [[ -z "${BUILD_LINK}" ]]; then
216216
msg_verbose "No build-link specified."
217217
elif [[ "${BUILD_LINK}" != "dynamic" ]] && [[ "${BUILD_LINK}" != "static" ]]; then
218-
msg_error "Provided build-link ${BUILD_LINK}' not a valid value."
218+
msg_error "Provided build-link '${BUILD_LINK}' not a valid value."
219219
help
220220
exit 1
221221
fi
@@ -343,7 +343,7 @@ main()
343343
export CFLAGS="${BUILD_FLAGS}"
344344
msg_verbose "Exporting CFLAGS '${CFLAGS}'"
345345
else
346-
msg_verbose "CFLAGS intitally '${CFLAGS}'"
346+
msg_verbose "CFLAGS initially '${CFLAGS}'"
347347
SANITIZED_CFLAGS=$(strip_optimization "$CFLAGS")
348348
export CFLAGS="${SANITIZED_CFLAGS} ${BUILD_FLAGS}"
349349
msg_verbose "CFLAGS modified to '${CFLAGS}'"
@@ -353,7 +353,7 @@ main()
353353
export CXXFLAGS="${BUILD_FLAGS}"
354354
msg_verbose "Exporting CXXFLAGS '${CXXFLAGS}'"
355355
else
356-
msg_verbose "CXXFLAGS intitally '${CXXFLAGS}'"
356+
msg_verbose "CXXFLAGS initially '${CXXFLAGS}'"
357357
SANITIZED_CXXFLAGS=$(strip_optimization "$CXXFLAGS")
358358
export CXXFLAGS="${SANITIZED_CXXFLAGS} ${BUILD_FLAGS}"
359359
msg_verbose "CXXFLAGS modified to '${CXXFLAGS}'"
@@ -541,7 +541,7 @@ source_archive()
541541
fi
542542

543543
if [ -d "${PROJECT}" ]; then
544-
msg_warn "Encounted existing '${PROJECT}' directory, removing..."
544+
msg_warn "Encountered existing '${PROJECT}' directory, removing..."
545545
remove_directory_force "${PROJECT}"
546546
fi
547547

@@ -596,7 +596,7 @@ source_github()
596596
fi
597597

598598
if [ -d "${REPOSITORY}" ]; then
599-
msg_warn "Encounted existing '${REPOSITORY}' directory, removing..."
599+
msg_warn "Encountered existing '${REPOSITORY}' directory, removing..."
600600
remove_directory_force "${REPOSITORY}"
601601
fi
602602

@@ -632,7 +632,7 @@ install_make()
632632
pop_directory # BUILD_OBJ_DIR
633633
pop_directory # BUILD_SRC_DIR/PROJECT
634634

635-
msg_success "'${PROJECT}' installation compelete."
635+
msg_success "'${PROJECT}' installation complete."
636636
}
637637

638638
test_make()
@@ -676,7 +676,7 @@ test_make()
676676
pop_directory # BUILD_OBJ_DIR
677677
pop_directory # BUILD_SRC_DIR/PROJECT
678678

679-
msg_success "'${PROJECT}' test compelete."
679+
msg_success "'${PROJECT}' test complete."
680680
}
681681

682682
build_boost()
@@ -732,7 +732,7 @@ build_boost()
732732
msg "-sNO_BZIP2 : 1"
733733
msg "-sNO_ZSTD : 1"
734734
msg "-j : ${PARALLEL}"
735-
msg "-d0 : [supress informational messages]"
735+
msg "-d0 : [suppress informational messages]"
736736
msg "-q : [stop at the first error]"
737737
msg "--reconfigure : [ignore cached configuration]"
738738
msg "--prefix : ${PREFIX}"

builds/gnu/install-gnu.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ main()
190190
if [[ -z "${BUILD_LINK}" ]]; then
191191
msg_verbose "No build-link specified."
192192
elif [[ "${BUILD_LINK}" != "dynamic" ]] && [[ "${BUILD_LINK}" != "static" ]]; then
193-
msg_error "Provided build-link ${BUILD_LINK}' not a valid value."
193+
msg_error "Provided build-link '${BUILD_LINK}' not a valid value."
194194
help
195195
exit 1
196196
fi
@@ -301,7 +301,7 @@ main()
301301
export CFLAGS="${BUILD_FLAGS}"
302302
msg_verbose "Exporting CFLAGS '${CFLAGS}'"
303303
else
304-
msg_verbose "CFLAGS intitally '${CFLAGS}'"
304+
msg_verbose "CFLAGS initially '${CFLAGS}'"
305305
SANITIZED_CFLAGS=$(strip_optimization "$CFLAGS")
306306
export CFLAGS="${SANITIZED_CFLAGS} ${BUILD_FLAGS}"
307307
msg_verbose "CFLAGS modified to '${CFLAGS}'"
@@ -311,7 +311,7 @@ main()
311311
export CXXFLAGS="${BUILD_FLAGS}"
312312
msg_verbose "Exporting CXXFLAGS '${CXXFLAGS}'"
313313
else
314-
msg_verbose "CXXFLAGS intitally '${CXXFLAGS}'"
314+
msg_verbose "CXXFLAGS initially '${CXXFLAGS}'"
315315
SANITIZED_CXXFLAGS=$(strip_optimization "$CXXFLAGS")
316316
export CXXFLAGS="${SANITIZED_CXXFLAGS} ${BUILD_FLAGS}"
317317
msg_verbose "CXXFLAGS modified to '${CXXFLAGS}'"
@@ -511,7 +511,7 @@ source_archive()
511511
fi
512512

513513
if [ -d "${PROJECT}" ]; then
514-
msg_warn "Encounted existing '${PROJECT}' directory, removing..."
514+
msg_warn "Encountered existing '${PROJECT}' directory, removing..."
515515
remove_directory_force "${PROJECT}"
516516
fi
517517

@@ -566,7 +566,7 @@ source_github()
566566
fi
567567

568568
if [ -d "${REPOSITORY}" ]; then
569-
msg_warn "Encounted existing '${REPOSITORY}' directory, removing..."
569+
msg_warn "Encountered existing '${REPOSITORY}' directory, removing..."
570570
remove_directory_force "${REPOSITORY}"
571571
fi
572572

@@ -602,7 +602,7 @@ install_make()
602602
pop_directory # BUILD_OBJ_DIR
603603
pop_directory # BUILD_SRC_DIR/PROJECT
604604

605-
msg_success "'${PROJECT}' installation compelete."
605+
msg_success "'${PROJECT}' installation complete."
606606
}
607607

608608
test_make()
@@ -646,7 +646,7 @@ test_make()
646646
pop_directory # BUILD_OBJ_DIR
647647
pop_directory # BUILD_SRC_DIR/PROJECT
648648

649-
msg_success "'${PROJECT}' test compelete."
649+
msg_success "'${PROJECT}' test complete."
650650
}
651651

652652
build_boost()
@@ -702,7 +702,7 @@ build_boost()
702702
msg "-sNO_BZIP2 : 1"
703703
msg "-sNO_ZSTD : 1"
704704
msg "-j : ${PARALLEL}"
705-
msg "-d0 : [supress informational messages]"
705+
msg "-d0 : [suppress informational messages]"
706706
msg "-q : [stop at the first error]"
707707
msg "--reconfigure : [ignore cached configuration]"
708708
msg "--prefix : ${PREFIX}"

0 commit comments

Comments
 (0)