Sample plugin moved to .../plugins/sample-plugin 92/1392/1
authorDave Barach <[email protected]>
Fri, 3 Jun 2016 19:27:05 +0000 (15:27 -0400)
committerDave Barach <[email protected]>
Fri, 3 Jun 2016 19:27:27 +0000 (15:27 -0400)
Change-Id: I6de20c9883d6918899c4b5b03e900814961e824d
Signed-off-by: Dave Barach <[email protected]>
build-root/scripts/find-dev-contents

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