From 94ec2b6b1c05e6047ecf02bc74776d0ad84f71cf Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 3 Nov 2014 21:05:47 -0600 Subject: [PATCH] make 'autoreconf' work from dist tarball We need to include VERSION for it to run. --- Makefile.am | 2 ++ configure.ac | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index fbb9315..12d8be7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,3 +3,5 @@ ACLOCAL_AMFLAGS = -I m4 pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libcrypto.pc libssl.pc openssl.pc + +EXTRA_DIST = VERSION diff --git a/configure.ac b/configure.ac index 88613d6..e20d044 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -+AC_INIT([libressl], m4_esyscmd([tr -d '\n' < VERSION])) +AC_INIT([libressl], m4_esyscmd([tr -d '\n' < VERSION])) AC_CANONICAL_HOST AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_MACRO_DIR([m4])