Lines Matching refs:basedir
43 basedir=
47 --basedir)
49 usage_error "option '--basedir' requires an argument"
51 basedir=$2
65 Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..."
69 byte compiled file. Specify --basedir for any additional path information you
73 py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py
102 # if basedir was given, then it should be prepended to filenames before
104 if test -z "$basedir"; then
107 pathtrans="path = os.path.join('$basedir', file)"