https://gitlab.inria.fr/pm2/pm2
Raw File
Tip revision: 28348cbb7443cecb94f0380eacf8e9c4fd3b247e authored by Alexandre Denis on 11 July 2022, 16:08:29 UTC
nmad: some more error-checking on remote queues
Tip revision: 28348cb
autogen.sh
#! /bin/sh

export M4PATH=./building-tools:../building-tools:${M4PATH}

${AUTOCONF:-autoconf}
${AUTOHEADER:-autoheader} -f

if [ ! -r ./mpi_sync_clocks ]; then
    if [ -r ../mpi_sync_clocks ]; then
	ln -s ../mpi_sync_clocks .
    else
	echo "Cannot find mpi_sync_clocks sub-module"
	exit 1
    fi
fi
( cd mpi_sync_clocks ; ./autogen.sh )

back to top