From e675cf10da5e9f23cbe4c4abde4e206acbdb9106 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Thu, 17 Jul 2014 08:02:11 -0700 Subject: [PATCH] Don't version the executable on Linux Release branches will continue to use versioned file names, but that doesn't really make much sense for builds from master. --- configure.ac | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/configure.ac b/configure.ac index cc631d389..b7475f2a6 100644 --- a/configure.ac +++ b/configure.ac @@ -47,18 +47,13 @@ AC_SUBST(build_darwin) # Configurable variables ######################## # Name of aegisub binary. -# On OS X everything goes in an app bundle so no point in versioning the executable -AS_IF([test x$build_darwin = xyes], - [AEGISUB_COMMAND="aegisub"], - [AEGISUB_COMMAND="aegisub-3.1"]) +# This is tagged with the version on release branches. +AEGISUB_COMMAND="aegisub" AC_SUBST(AEGISUB_COMMAND) AC_DEFINE_UNQUOTED([AEGISUB_COMMAND], ["${AEGISUB_COMMAND}"], [Name of the Aegisub executable]) # Name of gettext catalog. -# On OS X everything goes in an app bundle so no point in versioning the executable -AS_IF([test x$build_darwin = xyes], - [AEGISUB_CATALOG="aegisub"], - [AEGISUB_CATALOG="aegisub-31"]) +AEGISUB_CATALOG="aegisub" AC_SUBST(AEGISUB_CATALOG) AC_DEFINE_UNQUOTED([AEGISUB_CATALOG], ["${AEGISUB_CATALOG}"], [Name of the Aegisub gettext catalog])