diff options
author | msvensson@neptunus.(none) <> | 2006-09-26 17:52:15 +0200 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-09-26 17:52:15 +0200 |
commit | 43f67cc4de47567669fd93f593d7c1aa5187c97d (patch) | |
tree | aa06d537affb3b43dc727308fc3d8e8d1472657f /netware | |
parent | 6a6345ef991b9e4941f60baf56e709843e4c05e6 (diff) | |
download | mariadb-git-43f67cc4de47567669fd93f593d7c1aa5187c97d.tar.gz |
Fir problem with winepath in mwenv
Diffstat (limited to 'netware')
-rwxr-xr-x | netware/BUILD/mwenv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netware/BUILD/mwenv b/netware/BUILD/mwenv index 087170b2781..d8d53293b2c 100755 --- a/netware/BUILD/mwenv +++ b/netware/BUILD/mwenv @@ -21,9 +21,9 @@ echo "BUILD_DIR: $BUILD_DIR" # Get current dir in wine format base=`echo $MYDEV |sed 's/\/.*//'` -base_unix_part=`winepath -- -u $base` +base_unix_part=`winepath -- -u $base/` WINE_BUILD_DIR=`echo "$BUILD_DIR" | sed 's_'$base_unix_part'/__'` -WINE_BUILD_DIR="$base$WINE_BUILD_DIR" +WINE_BUILD_DIR="$base/$WINE_BUILD_DIR" echo "WINE_BUILD_DIR: $WINE_BUILD_DIR" export MWCNWx86Includes="$MYDEV/libc/include;$MYDEV/fs64/headers;$MYDEV/zlib-1.2.3;$WINE_BUILD_DIR/include;$MYDEV" |