ports/audio/schismtracker/patches/patch-configure_ac

17 lines
672 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Prevent calling Git to obtain date of the last commit, and hardcode
[last_git_commit] value to match package version.
Index: configure.ac
--- configure.ac.orig
+++ configure.ac
@@ -22,8 +22,7 @@ dnl along with this program; if not, write to the Free
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl PACKAGE_VERSION will be either "" if not using git, or date of the last git commit in the form YYYYMMDD
-m4_define([last_git_commit], patsubst(m4_esyscmd([git log -n 1 --date=short --format=format:%cd]), [[^0-9]]))
-AC_INIT([schismtracker],[last_git_commit])
2023-09-14 00:49:35 +00:00
+AC_INIT([schismtracker],[20230906])
2023-08-16 22:26:55 +00:00
AC_CONFIG_SRCDIR([schism/main.c])