Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 19 lines 403 B view raw
1export IMAKECPP="@tradcpp@/bin/tradcpp" 2 3imakeConfigurePhase() { 4 runHook preConfigure 5 6 echoCmd 'configuring with imake' 7 8 if [ -z "${imakefile:-}" -a ! -e Imakefile ]; then 9 echo "no Imakefile, doing nothing" 10 else 11 xmkmf -a 12 fi 13 14 runHook postConfigure 15} 16 17if [ -z "${dontUseImakeConfigure-}" -a -z "${configurePhase-}" ]; then 18 configurePhase=imakeConfigurePhase 19fi