[geos-commits] r4202 - trunk

Sandro Santilli strk at keybit.net
Sun Apr 24 10:27:57 PDT 2016


Author: strk
Date: 2016-04-24 10:27:57 -0700 (Sun, 24 Apr 2016)
New Revision: 4202

Modified:
   trunk/.gitignore
   trunk/Makefile.am
   trunk/autogen.sh
Log:
Symlink README to README.md at autogen.sh time

Should fix distcheck

Modified: trunk/.gitignore
===================================================================
--- trunk/.gitignore	2016-04-23 15:24:11 UTC (rev 4201)
+++ trunk/.gitignore	2016-04-24 17:27:57 UTC (rev 4202)
@@ -1,3 +1,4 @@
+README
 _build
 aclocal.m4
 Makefile.in

Modified: trunk/Makefile.am
===================================================================
--- trunk/Makefile.am	2016-04-23 15:24:11 UTC (rev 4201)
+++ trunk/Makefile.am	2016-04-24 17:27:57 UTC (rev 4202)
@@ -27,9 +27,6 @@
 
 ACLOCAL_AMFLAGS = -I macros
 
-README: README.md
-	ln -s README.md README
-
 cl:
 	cd $(srcdir) && svn update && svn2cl --authors=authors.svn -i -o ChangeLog
 

Modified: trunk/autogen.sh
===================================================================
--- trunk/autogen.sh	2016-04-23 15:24:11 UTC (rev 4201)
+++ trunk/autogen.sh	2016-04-24 17:27:57 UTC (rev 4202)
@@ -50,7 +50,6 @@
 fi
 AUTOMAKE_VER=`${AUTOMAKE} --version | grep -E "^.*[0-9]$" | sed 's/^.* //'`
 
-
 for libtoolize in libtoolize glibtoolize; do
     LIBTOOLIZE=`which $libtoolize 2>/dev/null`
     if test -x "${LIBTOOLIZE}"; then
@@ -68,6 +67,10 @@
    AMOPTS=$AMOPTS" --include-deps";
 fi
 
+# README is needed by libtoolize (and GNU standards)
+echo "* Symlinking README.md to README"
+ln -s README.md README
+
 LTOPTS="--force --copy"
 echo "* Running ${LIBTOOLIZE} (${LIBTOOLIZE_VER})"
 echo "   OPTIONS = ${LTOPTS}"



More information about the geos-commits mailing list