From: Andrew Morton <akpm@linux-foundation.org> Date: Fri, 7 Dec 2007 22:42:08 +0000 (-0800) Subject: [IA64] don't assume that unwcheck.py is executable X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ff08e657f3e7224d090dd816e00cea2c110575c4;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git [IA64] don't assume that unwcheck.py is executable Don't assume that this file has execute permissions. For example, patch(1) loses that information. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Tony Luck <tony.luck@intel.com> --- diff --git a/arch/ia64/Makefile b/arch/ia64/Makefile index 34951aa2370..b916ccfdef8 100644 --- a/arch/ia64/Makefile +++ b/arch/ia64/Makefile @@ -77,7 +77,7 @@ vmlinux.gz: vmlinux $(Q)$(MAKE) $(build)=$(boot) $@ unwcheck: vmlinux - -$(Q)READELF=$(READELF) $(srctree)/arch/ia64/scripts/unwcheck.py $< + -$(Q)READELF=$(READELF) python $(srctree)/arch/ia64/scripts/unwcheck.py $< archclean: $(Q)$(MAKE) $(clean)=$(boot) diff --git a/arch/ia64/scripts/unwcheck.py b/arch/ia64/scripts/unwcheck.py old mode 100755 new mode 100644