diff mbox series

contrib/svn-fe: fix shebang for svnrdump_sim.py

Message ID AM6PR02MB49509E34B4DC357582262193EA8F0@AM6PR02MB4950.eurprd02.prod.outlook.com (mailing list archive)
State New, archived
Headers show
Series contrib/svn-fe: fix shebang for svnrdump_sim.py | expand

Commit Message

CHIGOT, CLEMENT Sept. 17, 2019, 2:58 p.m. UTC
The shebang for a python script should be "/usr/bin/env python" and not
"/usr/bin/python". On some OSes like AIX, python default path is not under
"/usr/bin" ("/opt/freeware/bin" for AIX).

Note the main reason behind this change is that AIX rpm will add a
dependency on "/usr/bin/python" instead of "/usr/bin/env".

Signed-off-by: Clément Chigot <clement.chigot@atos.net>
---
 contrib/svn-fe/svnrdump_sim.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/contrib/svn-fe/svnrdump_sim.py b/contrib/svn-fe/svnrdump_sim.py
index 11ac6f6927..50c6a4f89d 100755
--- a/contrib/svn-fe/svnrdump_sim.py
+++ b/contrib/svn-fe/svnrdump_sim.py
@@ -1,4 +1,4 @@ 
-#!/usr/bin/python
+#!/usr/bin/env python
 """
 Simulates svnrdump by replaying an existing dump from a file, taking care
 of the specified revision range.