Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added fix to autogen.sh, because git doesn't support empty directories.
  • Loading branch information
njh committed Oct 28, 2010
1 parent c961cc6 commit 34aba4b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion autogen.sh
Expand Up @@ -61,10 +61,14 @@ run_cmd() {
}


# Because git doesn't support empty directories
if [ ! -d "$srcdir/build-scripts" ]; then
mkdir "$srcdir/build-scripts"
fi

run_cmd aclocal
run_cmd autoheader
run_cmd automake --add-missing --copy
run_cmd autoconf


$srcdir/configure && echo

0 comments on commit 34aba4b

Please sign in to comment.