Changeset 326 for pyyaml/trunk/setup.py
- Timestamp:
- 12/28/08 18:34:19 (4 years ago)
- File:
-
- 1 edited
-
pyyaml/trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/setup.py
r325 r326 221 221 depends=ext.depends) 222 222 except CompileError: 223 log.warn("%s appears not to be installed: forcing --%s" 223 log.warn("") 224 log.warn("%s is not found or a compiler error: forcing --%s" 224 225 % (ext.feature_name, ext.neg_option_name)) 225 log.warn("(if %s is installed , you may need to specify"226 log.warn("(if %s is installed correctly, you may need to" 226 227 % ext.feature_name) 227 log.warn(" the option --include-dirs or uncomment and modify")228 log.warn(" the parameter include_dirs in setup.cfg)")228 log.warn(" specify the option --include-dirs or uncomment and") 229 log.warn(" modify the parameter include_dirs in setup.cfg)") 229 230 open(cache, 'w').write('0\n') 230 231 return False … … 239 240 extra_postargs=(ext.extra_link_args or [])) 240 241 except LinkError: 241 log.warn("unable to link against %s" % ext.feature_name) 242 log.warn("(if %s is installed correctly, you may need to specify" 242 log.warn("") 243 log.warn("%s is not found or a linker error: forcing --%s" 244 % (ext.feature_name, ext.neg_option_name)) 245 log.warn("(if %s is installed correctly, you may need to" 243 246 % ext.feature_name) 244 log.warn(" the option --library-dirs or uncomment and modify")245 log.warn(" the parameter library_dirs in setup.cfg)")247 log.warn(" specify the option --library-dirs or uncomment and") 248 log.warn(" modify the parameter library_dirs in setup.cfg)") 246 249 open(cache, 'w').write('0\n') 247 250 return False
Note: See TracChangeset
for help on using the changeset viewer.
