replace /usr/local/bin/perl shebang with ugly but hopefully more portable construct
authorkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 2 Oct 2000 23:39:22 +0000 (23:39 +0000)
committerkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 2 Oct 2000 23:39:22 +0000 (23:39 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@443 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/packihx

index 4956fe51d30cce9ff4d7720b59eb6a134697787b..9a9ca2abd4c42bab77de6752c43cd8b313dab3be 100755 (executable)
@@ -1,4 +1,8 @@
-#!/usr/local/bin/perl -w
+#!/bin/sh
+exec perl -x "$0" "$@"
+#!perl -w
+# Real script begins here; the above ugliness should locate
+# perl on your path.
 
 # Quick & dirty perl hack to pack an Intel Hex format output file.
 # Will consolidate lines up to $outChunk bytes per line.