| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent adfb80a commit e7d8029
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,6 @@ | |||
| 5 | 5 | import errno | |
| 6 | 6 | import argparse | |
| 7 | 7 | import os | |
| 8 | - import pipes | ||
| 9 | 8 | import pprint | |
| 10 | 9 | import re | |
| 11 | 10 | import shlex | |
@@ -2074,7 +2073,7 @@ def make_bin_override(): | |||
| 2074 | 2073 | pprint.pformat(output, indent=2, width=1024) + '\n') | |
| 2075 | 2074 | ||
| 2076 | 2075 | write('config.status', '#!/bin/sh\nset -x\nexec ./configure ' + | |
| 2077 | - ' '.join([pipes.quote(arg) for arg in original_argv]) + '\n') | ||
| 2076 | + ' '.join([shlex.quote(arg) for arg in original_argv]) + '\n') | ||
| 2078 | 2077 | os.chmod('config.status', 0o775) | |
| 2079 | 2078 | ||
| 2080 | 2079 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments