mirror of https://github.com/odrling/Aegisub
On OS X affix -debug to the bundle name when --enable-debug is used.
Originally committed to SVN as r2738.
This commit is contained in:
parent
e792da082c
commit
5be76ad6ac
|
@ -28,10 +28,10 @@ SUBDIRS = \
|
|||
desktop
|
||||
|
||||
osx-bundle:
|
||||
@SHELL@ scripts/osx-bundle.sh @PACKAGE_TARNAME@-@PACKAGE_VERSION@ @AEGISUB_VERSION_DATA@
|
||||
@SHELL@ scripts/osx-bundle.sh @PACKAGE_TARNAME@-@PACKAGE_VERSION@@PACKAGE_DEBUG@ @AEGISUB_VERSION_DATA@
|
||||
|
||||
osx-dmg:
|
||||
@SHELL@ scripts/osx-dmg.sh @PACKAGE_TARNAME@-@PACKAGE_VERSION@ "@PACKAGE_TARNAME@ @PACKAGE_VERSION@"
|
||||
@SHELL@ scripts/osx-dmg.sh @PACKAGE_TARNAME@-@PACKAGE_VERSION@@PACKAGE_DEBUG@ "@PACKAGE_TARNAME@ @PACKAGE_VERSION@"
|
||||
|
||||
EXTRA_DIST = \
|
||||
intltool-extract.in \
|
||||
|
|
|
@ -69,6 +69,7 @@ case "$target_or_host" in
|
|||
;;
|
||||
esac
|
||||
|
||||
|
||||
# Used for universalchardet.
|
||||
AC_AGI_MDCPUCFG($target_or_host)
|
||||
|
||||
|
@ -1062,6 +1063,11 @@ else
|
|||
AC_MSG_RESULT([no])
|
||||
fi
|
||||
|
||||
if test "$enable_debug" = "yes"; then
|
||||
PACKAGE_DEBUG="-debug"
|
||||
AC_SUBST(PACKAGE_DEBUG)
|
||||
fi
|
||||
|
||||
|
||||
###########
|
||||
# Profiling
|
||||
|
|
Loading…
Reference in New Issue