Skip to content
Snippets Groups Projects
Commit dc007e8c authored by Markus Blatt's avatar Markus Blatt
Browse files

readlink on Mac does not know --canonicalize butr only -f. So simply use the latter.

[[Imported from SVN: r4684]]
parent d38a1df6
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ fi
# Read the modules find part
INCDIR=$(dirname $(readlink --canonicalize $0))
INCDIR=$(dirname $(readlink -f $0))
. $INCDIR/dunemodules.inc
......
......@@ -24,7 +24,7 @@ while [ "$DATACORRECT" != "y" -a "$DATACORRECT" != "Y" ]; do
MODULE="$PROJECT"
# Read the modules find part
. $(cd $(dirname $(readlink --canonicalize $0)); pwd)/dunemodules.inc
. $(cd $(dirname $(readlink -f $0)); pwd)/dunemodules.inc
if [ "$MODULES" = "" ]; then
find_modules .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment