add extra slash so build works in non-debia
[roojspacker] / autogen.sh
1 #!/bin/sh
2
3 # Calling this script is basically the same as calling the configure
4 # script directly, except that if your project uses submodules calling
5 # this script will automatically initialize them.
6
7 if [ -e $(dirname "$0")/.gitmodules ]; then
8     (cd "$(dirname "$0")" && git submodule update --init --recursive)
9 fi
10
11 $(dirname $0)/configure "$@"