From: Clément Chigot Date: Tue, 17 Sep 2019 14:58:41 +0000 (+0000) Subject: contrib/svn-fe: fix shebang for svnrdump_sim.py X-Git-Tag: v2.24.0-rc0~63^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af78249463bd1cc016ee0f1886f27fde03f8d073;p=thirdparty%2Fgit.git contrib/svn-fe: fix shebang for svnrdump_sim.py 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 Signed-off-by: Junio C Hamano --- 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.