Lines Matching refs:destdir
44 destdir=
55 --destdir)
57 usage_error "option '--destdir' requires an argument"
59 destdir=$2
65 Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..."
67 Byte compile some python scripts FILES. Use --destdir to specify any
73 py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py
110 # if destdir was given, then it needs to be prepended to the filename to
112 if test -z "$destdir"; then
115 filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)"