Move java,lua api and remaining plugins to src/

Change-Id: I1c3b87e886603678368428ae56a6bd3327cbc90d
Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
2016-12-28 18:38:59 +01:00
parent fdc62abdc1
commit cb034b9b37
253 changed files with 719 additions and 2298 deletions

View File

@ -16,16 +16,16 @@ do
done
# sample plugin
paths=`(cd ..; find plugins/sample-plugin -type f -print | grep -v autom4te)`
paths=`(cd ..; find src/examples/sample-plugin -type f -print | grep -v autom4te)`
for path in $paths
do
relpath=`echo $path | sed -e 's:.*plugins/::'`
relpath=`echo $path | sed -e 's:.*src/examples/::'`
dir=`dirname $relpath`
if [ $dir = "sample-plugin" ] ; then
echo ../../$path /usr/share/doc/vpp/examples/plugins/sample-plugin >> $2
echo ../../$path /usr/share/doc/vpp/examples/sample-plugin/ >> $2
else
echo ../../$path \
/usr/share/doc/vpp/examples/plugins/$dir >> $2
/usr/share/doc/vpp/examples/$dir >> $2
fi
done