]> arthur.barton.de Git - bup.git/blobdiff - lib/cmd/list-idx-cmd.py
Makefile: remove vestigial checkout_info.py installation code
[bup.git] / lib / cmd / list-idx-cmd.py
index 78bb0a00fb94dc9d26e4756d35833d239d5a7e26..e7e7600cdb42a0f38fcd9659bdb2dfacc83921b5 100755 (executable)
@@ -1,15 +1,26 @@
 #!/bin/sh
 """": # -*-python-*-
-bup_python="$(dirname "$0")/bup-python" || exit $?
-exec "$bup_python" "$0" ${1+"$@"}
+# https://sourceware.org/bugzilla/show_bug.cgi?id=26034
+export "BUP_ARGV_0"="$0"
+arg_i=1
+for arg in "$@"; do
+    export "BUP_ARGV_${arg_i}"="$arg"
+    shift
+    arg_i=$((arg_i + 1))
+done
+# Here to end of preamble replaced during install
+bup_python="$(dirname "$0")/../../config/bin/python" || exit $?
+exec "$bup_python" "$0"
 """
 # end of bup preamble
 
 from __future__ import absolute_import, print_function
 from binascii import hexlify, unhexlify
-import sys, os
+import os, sys
 
-from bup import git, options
+sys.path[:0] = [os.path.dirname(os.path.realpath(__file__)) + '/..']
+
+from bup import compat, git, options
 from bup.compat import argv_bytes
 from bup.helpers import add_error, handle_ctrl_c, log, qprogress, saved_errors
 from bup.io import byte_stream
@@ -20,7 +31,7 @@ bup list-idx [--find=<prefix>] <idxfilenames...>
 find=   display only objects that start with <prefix>
 """
 o = options.Options(optspec)
-(opt, flags, extra) = o.parse(sys.argv[1:])
+opt, flags, extra = o.parse(compat.argv[1:])
 
 handle_ctrl_c()