Lines Matching refs:basedir
44 basedir=
48 --basedir)
50 usage_error "option '--basedir' requires an argument"
52 basedir=$2
66 Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..."
70 byte compiled file. Specify --basedir for any additional path information you
74 py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py
103 # if basedir was given, then it should be prepended to filenames before
105 if [ -z "$basedir" ]; then
108 pathtrans="path = os.path.join('$basedir', file)"