X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=make-plugins;fp=make-plugins;h=0000000000000000000000000000000000000000;hb=d4b2e7356a538ab5b7ba4d08df3c2e5c4111988c;hp=40377d185fb7cdc3d6f3db95352f7c6ed0309727;hpb=ad11b3992fbc6cb8f25f587e6061314f288e3730;p=mdictionary diff --git a/make-plugins b/make-plugins deleted file mode 100755 index 40377d1..0000000 --- a/make-plugins +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -path="trunk/src/plugins/" -pushd $path - -for pro in *; do - if [ -d "$pro" ] ; then - pushd $pro/src/ - qmake *.pro - make clean - make - mv `find . -name "*.so.*" -type f` "../../../base/$pro.so" - popd - fi -done -popd -