commit: 8abeacde9153944ab107d6b7aef69fabead13656
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 9 03:45:20 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Jul 9 03:45:20 2016 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=8abeacde
support/create_iso.sh: Aply patch to fix a missing slash
Patch from Rick <zero_kaos> re-adding the removed trailing slash from the
variable
targets/support/create-iso.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
index f45dd7d..15f5ff6 100755
--- a/targets/support/create-iso.sh
+++ b/targets/support/create-iso.sh
@@ -87,7 +87,7 @@ fi
isoroot_checksum() {
echo "Creating checksums for all files included in the iso, please
wait..."
find "${clst_target_path}" -type f ! -name 'isoroot_checksums' ! -name
'isolinux.bin' -exec sha512sum {} + > "${clst_target_path}"/isoroot_checksums
- sed -i "s#${clst_target_path}##" "${clst_target_path}"/isoroot_checksums
+ sed -i "s#${clst_target_path}/\?##"
"${clst_target_path}"/isoroot_checksums
}
run_mkisofs() {