XQuartz: Fix default CFBundleVersion
m4/shell variable name collision broke the case when the configure option was not used Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
This commit is contained in:
parent
2fbf5c2f91
commit
1bb932bf14
|
@ -559,11 +559,10 @@ AC_ARG_WITH(bundle-id-prefix, AS_HELP_STRING([--with-bundle-id-prefix=RDNS_PREF
|
||||||
[ BUNDLE_ID_PREFIX="${withval}" ])
|
[ BUNDLE_ID_PREFIX="${withval}" ])
|
||||||
AC_SUBST([BUNDLE_ID_PREFIX])
|
AC_SUBST([BUNDLE_ID_PREFIX])
|
||||||
AC_DEFINE_UNQUOTED(BUNDLE_ID_PREFIX, "$BUNDLE_ID_PREFIX", [Prefix to use for bundle identifiers])
|
AC_DEFINE_UNQUOTED(BUNDLE_ID_PREFIX, "$BUNDLE_ID_PREFIX", [Prefix to use for bundle identifiers])
|
||||||
DEFAULT_BUNDLE_VERSION=`echo ${PACKAGE_VERSION} | cut -f1-3 -d.`
|
m4_define(DEFAULT_BUNDLE_VERSION, m4_esyscmd([echo ]AC_PACKAGE_VERSION[ | cut -f1-3 -d. | tr -d '\n']))
|
||||||
m4_define(DEFAULT_BUNDLE_VERSION, m4_esyscmd([echo ]AC_PACKAGE_VERSION[ | cut -f1-3 -d.]))
|
|
||||||
AC_ARG_WITH(bundle-version, AS_HELP_STRING([--with-bundle-version=VERSION], [Version to use for X11.app's CFBundleVersion (default: ]DEFAULT_BUNDLE_VERSION[)]),
|
AC_ARG_WITH(bundle-version, AS_HELP_STRING([--with-bundle-version=VERSION], [Version to use for X11.app's CFBundleVersion (default: ]DEFAULT_BUNDLE_VERSION[)]),
|
||||||
[ BUNDLE_VERSION="${withval}" ],
|
[ BUNDLE_VERSION="${withval}" ],
|
||||||
[ BUNDLE_VERSION="${DEFAULT_BUNDLE_VERSION}" ])
|
[ BUNDLE_VERSION="DEFAULT_BUNDLE_VERSION" ])
|
||||||
AC_SUBST([BUNDLE_VERSION])
|
AC_SUBST([BUNDLE_VERSION])
|
||||||
AC_ARG_WITH(bundle-version-string, AS_HELP_STRING([--with-bundle-version-string=VERSION], [Version to use for X11.app's CFBundleShortVersionString (default: ]AC_PACKAGE_VERSION[)]),
|
AC_ARG_WITH(bundle-version-string, AS_HELP_STRING([--with-bundle-version-string=VERSION], [Version to use for X11.app's CFBundleShortVersionString (default: ]AC_PACKAGE_VERSION[)]),
|
||||||
[ BUNDLE_VERSION_STRING="${withval}" ],
|
[ BUNDLE_VERSION_STRING="${withval}" ],
|
||||||
|
|
Loading…
Reference in New Issue