Skip to content

Commit 2c7284f

Browse files
committed
Fix status version check
1 parent ebe3cf2 commit 2c7284f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

m4/declare_versions.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ AC_DEFUN([DECLARE_VERSIONS],
2424
[Define to the development version of this package])
2525
AC_SUBST([PACKAGE_DEVELOPMENT_VERSION])
2626
27-
if [ "X$PACKAGE_DEVELOPMENT_VERSION" = "X" ]; then
27+
if test "X$PACKAGE_DEVELOPMENT_VERSION" = "X"; then
2828
PACKAGE_STATUS_VERSION=0
2929
else
3030
PACKAGE_STATUS_VERSION=1

0 commit comments

Comments
 (0)