xtreemfs: fix substituteInPlace paths

+9 -5
+9 -5
pkgs/tools/filesystems/xtreemfs/default.nix
··· 42 42 substituteInPlace etc/init.d/generate_initd_scripts.sh \ 43 43 --replace "/bin/bash" "${stdenv.shell}" 44 44 45 + substituteInPlace cpp/thirdparty/gtest-1.7.0/configure \ 46 + --replace "/usr/bin/file" "${file}/bin/file" 47 + 48 + substituteInPlace cpp/thirdparty/protobuf-2.5.0/configure \ 49 + --replace "/usr/bin/file" "${file}/bin/file" 50 + 51 + substituteInPlace cpp/thirdparty/protobuf-2.5.0/gtest/configure \ 52 + --replace "/usr/bin/file" "${file}/bin/file" 53 + 45 54 # do not put cmake into buildInputs 46 55 export PATH="$PATH:${cmake}/bin" 47 - ''; 48 - 49 - preBuild = '' 50 - substituteInPlace configure \ 51 - --replace "/usr/bin/file" "${file}/bin/file" 52 56 ''; 53 57 54 58 doCheck = false;