diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-03-13 01:38:00 (GMT) |
---|---|---|
committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-03-14 13:14:41 (GMT) |
commit | db4ce95e85ea9f5c581bc308bced5256471bc723 (patch) | |
tree | eac193a354eabe491a0ead94007426fe7ff6b6aa /tools | |
parent | 466e24cf4e515faf7db1433083be4ca498f8d481 (diff) | |
download | mxe-db4ce95e85ea9f5c581bc308bced5256471bc723.zip mxe-db4ce95e85ea9f5c581bc308bced5256471bc723.tar.gz mxe-db4ce95e85ea9f5c581bc308bced5256471bc723.tar.bz2 |
refer to LICENSE.md, TOFIX->FIXME
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/mxe-get | 27 |
1 files changed, 3 insertions, 24 deletions
diff --git a/tools/mxe-get b/tools/mxe-get index f1cdb9f..104f51c 100755 --- a/tools/mxe-get +++ b/tools/mxe-get @@ -1,28 +1,7 @@ #!/usr/bin/env bash -# The MIT License (MIT) -# ===================== -# -# Copyright (c) 2017 Viktor Szakats <https://vszakats.net/> -# -# Permission is hereby granted, free of charge, to any person obtaining -# a copy of this software and associated documentation files (the -# "Software"), to deal in the Software without restriction, including -# without limitation the rights to use, copy, modify, merge, publish, -# distribute, sublicense, and/or sell copies of the Software, and to -# permit persons to whom the Software is furnished to do so, subject to -# the following conditions: -# -# The above copyright notice and this permission notice shall be included -# in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# Copyright 2017 Viktor Szakats <https://vszakats.net/> +# This file is part of MXE. See LICENSE.md for licensing information. set -ue @@ -156,7 +135,7 @@ mkdir -p "${MXE_HOME}" if [ -n "${done}" ]; then echo '! Retargeting symlinks...' find . -type l -name '*' | while IFS= read -r f; do - # TOFIX: readlink may need to be adapted for non-macOS systems + # FIXME: readlink may need to be adapted for non-macOS systems ln -f -s "$(readlink "${f}" | sed "s|/usr/lib/mxe|$(pwd)|")" "${f}" done fi |