diff --git a/src/lib.rs b/src/lib.rs index 4562c34..fb41d9b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -446,7 +446,7 @@ impl PcFile { let mut deps = Vec::new(); for line in s.lines() { - // We could collect alot of stuff here, but we only care about Requires and Libs for the moment. + // We could collect a lot of stuff here, but we only care about Requires and Libs for the moment. if line.starts_with("Requires:") { let mut requires_args = line .split(":") diff --git a/tests/run.sh b/tests/run.sh index b026cc8..b3e931e 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -14,7 +14,7 @@ for port in harfbuzz ; do cargo clean --manifest-path $port/Cargo.toml cargo run --manifest-path $port/Cargo.toml && exit 2 echo THIS FAILURE IS EXPECTED - echo This is to ensure that we are not spuriously succeding because the libraries already exist someone on the build machine. + echo This is to ensure that we are not spuriously succeeding because the libraries already exist somewhere on the build machine. $VCPKG_ROOT/vcpkg install $port cargo run --manifest-path $port/Cargo.toml done diff --git a/tests/vcpkgrs_target.sh b/tests/vcpkgrs_target.sh index dda09db..559b9e6 100755 --- a/tests/vcpkgrs_target.sh +++ b/tests/vcpkgrs_target.sh @@ -8,14 +8,14 @@ export VCPKG_ROOT=$SCRIPTDIR/../vcp export VCPKGRS_TRIPLET=test-triplet export VCPKG_DEFAULT_TRIPLET=test-triplet -cp $VCPKG_ROOT/triplets/x64-linux.cmake $VCPKG_ROOT/triplets/test-triplet.cmake +cp $VCPKG_ROOT/triplets/x64-linux.cmake $VCPKG_ROOT/triplets/test-triplet.cmake for port in harfbuzz ; do # check that the port fails before it is installed $VCPKG_ROOT/vcpkg remove --no-binarycaching $port || true cargo clean --manifest-path $port/Cargo.toml cargo run --manifest-path $port/Cargo.toml && exit 2 echo THIS FAILURE IS EXPECTED - echo This is to ensure that we are not spuriously succeding because the libraries already exist someone on the build machine. + echo This is to ensure that we are not spuriously succeeding because the libraries already exist somewhere on the build machine. # disable binary caching because it breaks this build as of vcpkg 53e6588 (since vcpkg 52a9d9a) $VCPKG_ROOT/vcpkg install --no-binarycaching $port cargo run --manifest-path $port/Cargo.toml