Skip to content

Commit

Permalink
From: Doug Porter <[email protected]>
Browse files Browse the repository at this point in the history
To: [email protected]
Subject: Re: licensing

"Evan Martin" <[email protected]> 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
  • Loading branch information
dsporter committed Dec 11, 2004
1 parent 9224d48 commit 5ee89b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 5ee89b1

Please sign in to comment.