We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99f0289 + 45a2369 commit 9bbf2b8Copy full SHA for 9bbf2b8
configure.ac
@@ -3,7 +3,6 @@
3
4
AC_PREREQ([2.56])
5
AC_INIT([libjpeg-turbo], [1.4.80])
6
-BUILD=`date +%Y%m%d`
7
8
AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
9
AC_PREFIX_DEFAULT(/opt/libjpeg-turbo)
@@ -22,6 +21,10 @@ AC_PROG_INSTALL
22
21
AC_PROG_LIBTOOL
23
AC_PROG_LN_S
24
+AC_ARG_WITH([build-date], [Use custom build string to enable reproducible builds (default: YYMMDD)],
25
+ [BUILD="$with_build_date"],
26
+ [BUILD=`date +%Y%m%d`])
27
+
28
# When the prefix is /opt/libjpeg-turbo, we assume that an "official" binary is
29
# being created, and thus we install things into specific locations.
30
0 commit comments