From e0367c5d4dbd636f78dd2695dde82f870bd6c9a1 Mon Sep 17 00:00:00 2001 From: "Henry So, Jr." Date: Sat, 15 Apr 2017 08:26:31 -0400 Subject: [PATCH] =?UTF-8?q?Changed=20--enable-texlive=20to=20--disable-ver?= =?UTF-8?q?sion-in-exe=20per=20=C3=89lie=20Roux.=20Part=20of=20the=20imple?= =?UTF-8?q?mentation=20for=20#1292.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- configure.ac | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fcf861895..9aad3e22f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ You need a recent and working [TeXLive](https://www.tug.org/texlive/), on top of ## Building for inclusion in TeXLive -When building gregorio for inclusion in TeXLive, the gregorio executable must not have the version number prefix that is used for other builds. To make this happen, run `configure` with the `--enable-texlive` option and the generated Makefile will create a gregorio executable without the version number prefix (i.e., the executable will simply be named `gregorio`). +When building gregorio for inclusion in TeXLive, the gregorio executable must not have the version number prefix that is used for other builds. To make this happen, run `configure` with the `--disable-version-in-exe` option, and the generated Makefile will create a gregorio executable without the version number prefix (i.e., the executable will simply be named `gregorio`). ## Documentation diff --git a/configure.ac b/configure.ac index 3cc64e877..2d7119f42 100644 --- a/configure.ac +++ b/configure.ac @@ -104,11 +104,11 @@ AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug@<:@=sanitize,coverage@:>@] CPPFLAGS+=" -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 " ]) -AC_ARG_ENABLE([texlive], AS_HELP_STRING([--enable-texlive], [Enable TeX Live executable name.]), [ +AC_ARG_ENABLE([version-in-exe], AS_HELP_STRING([--disable-version-in-exe], [Disable version in executable name.]), [ AS_IF([test "x$enableval" != "xno"], [ - GREGORIO_EXE_SUFFIX="" - ], [ GREGORIO_EXE_SUFFIX="-$FILENAME_VERSION" + ], [ + GREGORIO_EXE_SUFFIX="" ]) ], [ GREGORIO_EXE_SUFFIX="-$FILENAME_VERSION"