From 5ee89b13b2a4aedd9d106606007b6da514075364 Mon Sep 17 00:00:00 2001 From: Doug Porter Date: Sat, 11 Dec 2004 00:50:53 +0000 Subject: From: Doug Porter To: memcached@lists.danga.com Subject: Re: licensing "Evan Martin" wrote: > > As I recall, the --foreign flag to automake tells it "this > isn't GPLed software, so don't add your files". Using the --foreign option makes automake less strict about GNU policy (it doesn't have anything to do with the GNU GPL per se). It is supposed to do only the minimum necessary. > But I thought we already used that? Actually the autogen.sh script is using --gnu... The following trivial patch resolves the problem: git-svn-id: http://code.sixapart.com/svn/memcached/trunk@228 b0b603af-a30f-0410-a34e-baf09ae79d0b --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index bbcd8eb..56b8e82 100755 --- a/autogen.sh +++ b/autogen.sh @@ -14,7 +14,7 @@ $AUTOHEADER || exit 1 echo "automake..." AUTOMAKE=${AUTOMAKE:-automake-1.7} -$AUTOMAKE --gnu --add-missing || automake --gnu --add-missing || exit 1 +$AUTOMAKE --foreign --add-missing || automake --gnu --add-missing || exit 1 echo "autoconf..." AUTOCONF=${AUTOCONF:-autoconf} -- cgit v1.2.1