From: Tobias Brunner Date: Mon, 25 Mar 2019 13:26:11 +0000 (+0100) Subject: configure: Fix package version for python packages for developer releases X-Git-Tag: 5.8.0rc1~41^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebe2bedebd3a54bd06348a6d7ee4efe6fcc0e5a3;p=thirdparty%2Fstrongswan.git configure: Fix package version for python packages for developer releases According to PEP 440 the suffix for development releases is .devN and not just devN. --- diff --git a/configure.ac b/configure.ac index f01b078623..3659e6dca7 100644 --- a/configure.ac +++ b/configure.ac @@ -1312,7 +1312,7 @@ fi AM_CONDITIONAL(RUBY_GEMS_INSTALL, [test "x$ruby_gems_install" = xtrue]) if test x$python_eggs = xtrue; then - PYTHON_PACKAGE_VERSION=`echo "$PACKAGE_VERSION" | $SED 's/dr/dev/'` + PYTHON_PACKAGE_VERSION=`echo "$PACKAGE_VERSION" | $SED 's/dr/.dev/'` AC_SUBST([PYTHON_PACKAGE_VERSION]) if test x$python_eggs_install = xtrue; then AC_PATH_PROG([EASY_INSTALL], [easy_install], [], [$PATH:/bin:/usr/bin:/usr/local/bin])