
(h8                 @   s   d  Z  d d l Z d d l Z d d l Z d d l m Z m Z d d l m Z d d l	 m
 Z
 e j d k r{ d a d a d d d d d d	  Z d d
 d  Z d S)zdistutils.spawn

Provides the 'spawn()' function, a front-end to various platform-
specific functions for launching another program in a sub-process.
Also provides the 'find_executable()' to search the path for a given
executable name.
    N)DistutilsPlatformErrorDistutilsExecError)DEBUG)logdarwin   c             C   s  t  |   }  t j d j |    | r, d S| rX t |  d  } | d k	 rX | |  d <| d k	 rj | n t t j  } t j	 d k rDt
 d k r d d l m } | j d  p d a
 t
 r d d	   t
 j d
  D a t
 rDt j j d t
  } t d d	   | j d
  D k r4d | t
 f } t |   | j d |  y, t j |  d | }	 |	 j   |	 j }
 WnU t k
 r} z5 t s|  d }  t d |  | j d f  |  WYd d } ~ Xn X|
 rt s|  d }  t d |  |
 f   d S)a  Run another program, specified as a command list 'cmd', in a new process.

    'cmd' is just the argument list for the new process, ie.
    cmd[0] is the program to run and cmd[1:] are the rest of its arguments.
    There is no way to run a program with a name different from that of its
    executable.

    If 'search_path' is true (the default), the system's executable
    search path will be used to find the program; otherwise, cmd[0]
    must be the exact path to the executable.  If 'dry_run' is true,
    the command will not actually be run.

    Raise DistutilsExecError if running the program fails in any way; just
    return on success.
     Nr   r   )	sysconfigMACOSX_DEPLOYMENT_TARGET c             S   s   g  |  ] } t  |   q S )int).0xr   r   A/tmp/pip-build-kmztzv_d/setuptools/setuptools/_distutils/spawn.py
<listcomp>=   s   	 zspawn.<locals>.<listcomp>.c             S   s   g  |  ] } t  |   q Sr   )r   )r   r   r   r   r   r   C   s   	 zF$MACOSX_DEPLOYMENT_TARGET mismatch: now "%s" but "%s" during configureenvzcommand %r failed: %sr   z#command %r failed with exit code %s)listr   infojoinfind_executabledictosenvironsysplatform_cfg_target	distutilsr	   get_config_varsplit_cfg_target_splitgetr   update
subprocessPopenwait
returncodeOSErrorr   r   args)cmdsearch_pathverbosedry_runr   
executabler	   
cur_targetmy_msgprocexitcodeexcr   r   r   spawn   sJ    
!"

0
r5   c             C   s  t  j j |   \ } } t j d k r= | d k r= |  d }  t  j j |   rS |  S| d k r t  j j d d  } | d k r y t  j d  } Wn! t	 t
 f k
 r t  j } Yn X| s d S| j t  j  } x9 | D]1 } t  j j | |   } t  j j |  r | Sq Wd S)zTries to find 'executable' in the directories listed in 'path'.

    A string listing directories separated by 'os.pathsep'; defaults to
    os.environ['PATH'].  Returns the complete filename or None if not found.
    win32z.exeNPATHCS_PATH)r   pathsplitextr   r   isfiler   r#   confstrAttributeError
ValueErrordefpathr!   pathsepr   )r/   r9   _extpathspfr   r   r   r   [   s(    
r   )__doc__r   r   r%   Zdistutils.errorsr   r   distutils.debugr   r   r   r   r   r"   r5   r   r   r   r   r   <module>   s   D