1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
Description: fix interpreter paths
Author: Xavier Guimard <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2019-08-21
--- a/tools/cutarelease.py
+++ b/tools/cutarelease.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright (c) 2009-2012 Trent Mick
--- a/tools/jsstyle
+++ b/tools/jsstyle
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
#
# CDDL HEADER START
#
--- a/tools/timechild.js
+++ b/tools/timechild.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/node
/*
* Time `log.child(...)`.
*
--- a/tools/timeguard.js
+++ b/tools/timeguard.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/node
/*
* Time logging with/without a try/catch-guard on the JSON.stringify
* and other code options around that section (see #427).
--- a/tools/timenop.js
+++ b/tools/timenop.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/node
/*
* Time logging below the current level, which should do very little work.
*/
--- a/tools/timesrc.js
+++ b/tools/timesrc.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/node
/*
* Time 'src' fields (getting log call source info). This is expensive.
*/
|