Merge branch 'qmake-rpath'

This commit is contained in:
Thomas Tuegel 2016-05-29 20:29:45 -05:00
commit fde2093b44
2 changed files with 12 additions and 0 deletions

View File

@ -68,6 +68,10 @@ _qtMultioutModuleDevs() {
fi
}
_qtRmQtOut() {
rm -fr "$qtOut"
}
qmakeConfigurePhase() {
runHook preConfigure
@ -109,6 +113,8 @@ fi
if [ -n "$NIX_QT_SUBMODULE" ]; then
postInstallHooks+=(_qtRmQmake _qtRmModules)
preFixupHooks+=(_qtMultioutModuleDevs)
else
postInstallHooks+=(_qtRmQtOut)
fi
fi

View File

@ -74,6 +74,10 @@ _qtModuleMultioutDevsPost() {
fi
}
_qtRmQtOut() {
rm -fr "$qtOut"
}
qmakeConfigurePhase() {
runHook preConfigure
@ -116,6 +120,8 @@ if [ -n "$NIX_QT_SUBMODULE" ]; then
postInstallHooks+=(_qtRmQmake _qtRmModules)
preFixupHooks+=(_qtModuleMultioutDevsPre)
postFixupHooks+=(_qtModuleMultioutDevsPost)
else
postInstallHooks+=(_qtRmQtOut)
fi
fi