Verified Commit 6f403cfe authored by Marc Vef's avatar Marc Vef
Browse files

Script fixes

parent 312cde25
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -232,8 +232,8 @@ if [[ "${CLUSTER}" == "mogon2" ]]; then
    fi

    # build lz4
    if [[ "${DEPENDENCY}" == "" || "${DEPENDENCY}" == "zstd" ]]; then
        echo "############################################################ Installing:  zstd"
    if [[ "${DEPENDENCY}" == "" || "${DEPENDENCY}" == "lz4" ]]; then
        echo "############################################################ Installing:  lz4"
        CURR=${SOURCE}/lz4
        cd "${CURR}"
        make -j"${CORES}"
@@ -257,7 +257,7 @@ if [[ "${CLUSTER}" == "mogon2" ]]; then
        CURR=${SOURCE}/capstone
        prepare_build_dir "${CURR}"
        cd "${CURR}"/build
        $CMAKE -DCMAKE_INSTALL_PREFIX=/home/vef/gekkofs_deps/install -DCMAKE_BUILD_TYPE:STRING=Release ..
        $CMAKE -DCMAKE_INSTALL_PREFIX="${INSTALL}" -DCMAKE_BUILD_TYPE:STRING=Release ..
        make -j"${CORES}" install
    fi
fi
+1 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ int main(int argc, const char* argv[]) {
            ("listen,l", po::value<string>(), "Address or interface to bind the daemon on. Default: local hostname")
            ("hosts-file,H", po::value<string>(),
                             "Shared file used by deamons to register their "
                             "enpoints. (default './gkfs_hosts.txt')")
                             "endpoints. (default './gkfs_hosts.txt')")
            ("version,h", "print version and exit");
    po::variables_map vm;
    po::store(po::parse_command_line(argc, argv, desc), vm);