Do not add ecos copyright text to PPP sources since the two licenses conflict

This commit is contained in:
jani 2003-09-16 14:13:16 +00:00
parent 3b8a1def42
commit 53969f830f

View File

@ -4,4 +4,12 @@
CURRENT=$EPK/net/lwip_tcpip/current
mkdir -p `dirname $CURRENT/$2`
cat header $LWIP_CVS/$1 > $CURRENT/$2
#prepend eCos license text to all files but the ones
#in the ppp directory: those have the advertising clause
#type of BSD license which is not compatible with GPL
#or that's what I'be been told and IANAL
if [ "`dirname $1`" != "src/netif/ppp" ]; then
cat header $LWIP_CVS/$1 > $CURRENT/$2
else
cp -f $LWIP_CVS/$1 $CURRENT/$2
fi