summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDoug Porter <dsp@dsp.name>2004-12-11 00:50:53 +0000
committerDoug Porter <dsp@dsp.name>2004-12-11 00:50:53 +0000
commit5ee89b13b2a4aedd9d106606007b6da514075364 (patch)
tree178dac89eee443c4cab1c4bc3ef6c649c74d65bc /autogen.sh
parent9224d4835e346aecad09675054ffba93c36ad2be (diff)
downloadmemcached-5ee89b13b2a4aedd9d106606007b6da514075364.tar.gz
From: Doug Porter <dsp@dsp.name>
To: memcached@lists.danga.com Subject: Re: licensing "Evan Martin" <martine@danga.com> 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
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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}