bump librarian version and do not fetch tags from librarian in virtualenv
authorMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Tue, 13 Dec 2011 10:25:51 +0000 (11:25 +0100)
committerMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Tue, 13 Dec 2011 10:25:51 +0000 (11:25 +0100)
lib/librarian
scripts/make-tags

index a8e0e65..d7ba2c6 160000 (submodule)
@@ -1 +1 @@
-Subproject commit a8e0e65bd0f444c69d7199f7e3c5ebce0d206b09
+Subproject commit d7ba2c607dacf7a6136b83a1588b5adf2278ad46
index 776d9d9..c1fe3ff 100755 (executable)
@@ -3,9 +3,10 @@
 ROOT=$(git rev-parse --show-toplevel)
 
 find $ROOT -name '*.py' | xargs etags -o ${ROOT}/TAGS
-find $ROOT/../librarian -name '*.py' | xargs etags -a -o ${ROOT}/TAGS
+# librarian is a submodule now
+#find $ROOT/../librarian -name '*.py' | xargs etags -a -o ${ROOT}/TAGS
 if [ -n "$VIRTUAL_ENV" ]; then
   find ${VIRTUAL_ENV}/lib -name '*.py' |xargs etags -a -o ${ROOT}/TAGS
 else
     echo "No Virtual env enabled, will not add it to TAGS"
-fi
\ No newline at end of file
+fi