Skip to content
  • Nirbheek Chauhan's avatar
    glib.recipe: Use python name not full path in tools · d2a52dc6
    Nirbheek Chauhan authored
    We don't want to hard-code the full path to the Python interpreter
    in the binary output of Cerbero because it might be different on the
    target system. Before:
    
     #!/usr/bin/env /Library/Frameworks/Python.framework/Versions/3.6/bin/python3
    
    Which could be /usr/local/bin/python3, for instance. After:
    
     #!/usr/bin/env python3
    d2a52dc6