bashisms: Fix previous commit.

This commit is contained in:
Alexpux
2014-10-20 07:30:58 +04:00
parent 9d19f11c94
commit ff856f1e8e
4 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
post_install() {
cd mingw32
local _prefix=$(pwd -W)
popd > /dev/null
cd -
sed -e "s|/mingw32|${_prefix}|g" -i mingw32/share/llvm/cmake/LLVMConfig.cmake
}

View File

@@ -1,7 +1,7 @@
post_install() {
cd mingw64
local _prefix=$(pwd -W)
popd > /dev/null
cd -
sed -e "s|/mingw64|${_prefix}|g" -i mingw64/share/llvm/cmake/LLVMConfig.cmake
}

View File

@@ -1,7 +1,7 @@
post_install() {
cd mingw32
local _prefix=$(pwd -W)
popd > /dev/null
cd -
sed -e "s|/mingw32|${_prefix}|g" -i mingw32/share/llvm/cmake/LLVMConfig.cmake
}

View File

@@ -1,7 +1,7 @@
post_install() {
cd mingw64
local _prefix=$(pwd -W)
popd > /dev/null
cd -
sed -e "s|/mingw64|${_prefix}|g" -i mingw64/share/llvm/cmake/LLVMConfig.cmake
}