Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: experimental/libav/voronoi/run.py

Issue 12412021: Don't hardcode Python path (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build_tools/sha1sum.py ('k') | experimental/quake/httpd.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/env python
2 # Copyright 2008, Google Inc. 2 # Copyright 2008, Google Inc.
3 # All rights reserved. 3 # All rights reserved.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 6 # modification, are permitted provided that the following conditions are
7 # met: 7 # met:
8 # 8 #
9 # * Redistributions of source code must retain the above copyright 9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer.
11 # * Redistributions in binary form must reproduce the above 11 # * Redistributions in binary form must reproduce the above
(...skipping 20 matching lines...) Expand all
32 import sys 32 import sys
33 sys.path.append("../../common") 33 sys.path.append("../../common")
34 import nacl_util 34 import nacl_util
35 35
36 NEXE = "voronoi.nexe" 36 NEXE = "voronoi.nexe"
37 DEFAULT_ARGS = ["-m4", "-d"] 37 DEFAULT_ARGS = ["-m4", "-d"]
38 38
39 if __name__ == '__main__': 39 if __name__ == '__main__':
40 nacl_util.LaunchSelLdr(nacl_util.GetExe(NEXE), 40 nacl_util.LaunchSelLdr(nacl_util.GetExe(NEXE),
41 nacl_util.GetArgs(DEFAULT_ARGS)) 41 nacl_util.GetArgs(DEFAULT_ARGS))
OLDNEW
« no previous file with comments | « build_tools/sha1sum.py ('k') | experimental/quake/httpd.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698