Skip to content

Commit

Permalink
Check for git if we are building a nightly or official release, since…
Browse files Browse the repository at this point in the history
… the buildnumber generation needs it. Fixes #255
  • Loading branch information
freaktechnik committed May 11, 2015
1 parent 5c98b59 commit af788cb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion configure.ac
Expand Up @@ -109,6 +109,10 @@ if test "$enable_nightly" == "yes"; then
fi
AC_SUBST(SONGBIRD_NIGHTLY)

if test "$SONGBIRD_OFFICIAL$SONGBIRD_NIGHTLY" == 1; then
AC_CHECK_PROG(GIT, git, git)
fi

#
# Check for --enable-tests
#
Expand Down Expand Up @@ -1224,7 +1228,7 @@ for option in `echo $SB_TAGLIB | sed 's/,/ /g'`; do
done
AC_SUBST(SB_TAGLIB)

#
#
# If we're building with SYSTEM_TAGLIB, find it
#

Expand Down

0 comments on commit af788cb

Please sign in to comment.