[ooo-build-commit] .: bin/analyse-link bin/catch-endif bin/cvsclean bin/cws-extract-cvs bin/cws-removal-fixup bin/diaconvert.pl bin/elfsum bin/find_dup bin/find-duplicates.pl bin/finterpose bin/gen bin/generate-bash-completion bin/genFromScratch bin/genrelocs bin/inactivity bin/install-maps bin/l10n-status bin/lreloc bin/ooconfig bin/ooinstall bin/oosize bin/oostripimpl.pl bin/ootool.in bin/ootouch bin/owner bin/package-lang-win32 bin/patch-remove bin/potores bin/preloc bin/relink bin/relocstat bin/reorder-link bin/re-root bin/sloppypatch.pl bin/split-library.pl bin/src-pack2 bin/strace-rewrite bin/svn-pack bin/tag-latest-master bin/tag-list bin/unused.pl
Thomas Klausner
tklausner at kemper.freedesktop.org
Mon Oct 4 04:14:40 PDT 2010
bin/analyse-link | 2 +-
bin/catch-endif | 2 +-
bin/cvsclean | 2 +-
bin/cws-extract-cvs | 2 +-
bin/cws-removal-fixup | 2 +-
bin/diaconvert.pl | 2 +-
bin/elfsum | 2 +-
bin/find-duplicates.pl | 2 +-
bin/find_dup | 2 +-
bin/finterpose | 2 +-
bin/gen | 2 +-
bin/genFromScratch | 2 +-
bin/generate-bash-completion | 2 +-
bin/genrelocs | 2 +-
bin/inactivity | 2 +-
bin/install-maps | 2 +-
bin/l10n-status | 2 +-
bin/lreloc | 2 +-
bin/ooconfig | 2 +-
bin/ooinstall | 2 +-
bin/oosize | 2 +-
bin/oostripimpl.pl | 2 +-
bin/ootool.in | 2 +-
bin/ootouch | 2 +-
bin/owner | 2 +-
bin/package-lang-win32 | 2 +-
bin/patch-remove | 2 +-
bin/potores | 2 +-
bin/preloc | 2 +-
bin/re-root | 2 +-
bin/relink | 2 +-
bin/relocstat | 2 +-
bin/reorder-link | 2 +-
bin/sloppypatch.pl | 2 +-
bin/split-library.pl | 2 +-
bin/src-pack2 | 2 +-
bin/strace-rewrite | 2 +-
bin/svn-pack | 2 +-
bin/tag-latest-master | 2 +-
bin/tag-list | 2 +-
bin/unused.pl | 2 +-
41 files changed, 41 insertions(+), 41 deletions(-)
New commits:
commit 4ec7e9aeaf9c59e9941d763520aad7d2b5196411
Author: Thomas Klausner <wiz at NetBSD.org>
Date: Mon Oct 4 13:13:49 2010 +0200
Replace '#!/usr/bin/perl -w' to '#!/usr/bin/env perl'.
Some systems do not have /usr/bin/perl, but it lives in some other
place.
diff --git a/bin/analyse-link b/bin/analyse-link
index 9e76df1..f2a6c69 100755
--- a/bin/analyse-link
+++ b/bin/analyse-link
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $log = shift (@ARGV) || '../map/relocation-log.bz2';
diff --git a/bin/catch-endif b/bin/catch-endif
index 1e55aff..e9f8466 100755
--- a/bin/catch-endif
+++ b/bin/catch-endif
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $test_only = 0;
diff --git a/bin/cvsclean b/bin/cvsclean
index cf559d1..d4e66d6 100755
--- a/bin/cvsclean
+++ b/bin/cvsclean
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my @output_buffer = ();
my $fname;
diff --git a/bin/cws-extract-cvs b/bin/cws-extract-cvs
index aac72d4..22f569e 100755
--- a/bin/cws-extract-cvs
+++ b/bin/cws-extract-cvs
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use File::Temp qw/ tempfile tempdir /;
diff --git a/bin/cws-removal-fixup b/bin/cws-removal-fixup
index 5c25107..9067578 100755
--- a/bin/cws-removal-fixup
+++ b/bin/cws-removal-fixup
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $fname = shift;
my $sources = shift;
diff --git a/bin/diaconvert.pl b/bin/diaconvert.pl
index cf1dc00..03f3b1c 100755
--- a/bin/diaconvert.pl
+++ b/bin/diaconvert.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# TODO:
# glue-point positioning
diff --git a/bin/elfsum b/bin/elfsum
index 4fbf9bf..2038bf3 100755
--- a/bin/elfsum
+++ b/bin/elfsum
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Output:
# liba libb libc
diff --git a/bin/find-duplicates.pl b/bin/find-duplicates.pl
index 3a0b19d..7620822 100755
--- a/bin/find-duplicates.pl
+++ b/bin/find-duplicates.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# find-duplicates:
# Gets the duplicates across modules for the class constructor symbols
diff --git a/bin/find_dup b/bin/find_dup
index 03efef8..215ee21 100755
--- a/bin/find_dup
+++ b/bin/find_dup
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
#
# Prints duplicate entries in a file
diff --git a/bin/finterpose b/bin/finterpose
index 8ccda89..87af9c1 100755
--- a/bin/finterpose
+++ b/bin/finterpose
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
#
# Use example: find -name '*.so' | finterpose
diff --git a/bin/gen b/bin/gen
index f19394c..4d3f155 100755
--- a/bin/gen
+++ b/bin/gen
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
sub usage() {
print "Usage: gen dest_dir [-r] file1 [file2 ...]\n";
diff --git a/bin/genFromScratch b/bin/genFromScratch
index 9c423e0..e09e259 100755
--- a/bin/genFromScratch
+++ b/bin/genFromScratch
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use File::Basename;
use File::stat;
use File::Copy;
diff --git a/bin/generate-bash-completion b/bin/generate-bash-completion
index 6585f3b..41fd85c 100755
--- a/bin/generate-bash-completion
+++ b/bin/generate-bash-completion
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# script to generate OOo bash_completion file for the main applications
# written by Rene Engelhard <rene at debian.org>, Public Domain
# updated for ooo-build by Petr Mladek <pmladek at suse.cz>, Public Domain
diff --git a/bin/genrelocs b/bin/genrelocs
index 586716b..9e3b75f 100755
--- a/bin/genrelocs
+++ b/bin/genrelocs
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $num_funcs = 50;
diff --git a/bin/inactivity b/bin/inactivity
index e5c1bdf..a95d742 100755
--- a/bin/inactivity
+++ b/bin/inactivity
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Show inactive issues
diff --git a/bin/install-maps b/bin/install-maps
index 9a389d4..69816e2 100755
--- a/bin/install-maps
+++ b/bin/install-maps
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# The worst offendors in bloated sym tables:
diff --git a/bin/l10n-status b/bin/l10n-status
index 253c0d5..8f947d3 100755
--- a/bin/l10n-status
+++ b/bin/l10n-status
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use strict;
diff --git a/bin/lreloc b/bin/lreloc
index 96a38cd..be7c70b 100755
--- a/bin/lreloc
+++ b/bin/lreloc
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
#
# Use example: cd /opt/OOInstall/program
diff --git a/bin/ooconfig b/bin/ooconfig
index 8539518..bebb2d0 100755
--- a/bin/ooconfig
+++ b/bin/ooconfig
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use strict;
diff --git a/bin/ooinstall b/bin/ooinstall
index 4d03b40..db22ae5 100755
--- a/bin/ooinstall
+++ b/bin/ooinstall
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# This script has three uses:
# 1. From the command line to install straight into a given directory:
diff --git a/bin/oosize b/bin/oosize
index 999b704..75f17bd 100755
--- a/bin/oosize
+++ b/bin/oosize
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $ls_mode = 0;
my $split_mode = 0;
diff --git a/bin/oostripimpl.pl b/bin/oostripimpl.pl
index b0b7bdc..a104976 100755
--- a/bin/oostripimpl.pl
+++ b/bin/oostripimpl.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $libname = shift @ARGV;
diff --git a/bin/ootool.in b/bin/ootool.in
index c3e7cec..38a756e 100755
--- a/bin/ootool.in
+++ b/bin/ootool.in
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# install dir in /
my $installdir='@OOINSTBASE@';
diff --git a/bin/ootouch b/bin/ootouch
index 89971e7..9a9d2e8 100755
--- a/bin/ootouch
+++ b/bin/ootouch
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
if (@ARGV < 1) {
print "ootouch [--files <regex: .*\\.cxx>] <strings to find> [...]\n";
diff --git a/bin/owner b/bin/owner
index e478181..3fa9761 100755
--- a/bin/owner
+++ b/bin/owner
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my @files;
my ($help, $plain, $aggregate);
diff --git a/bin/package-lang-win32 b/bin/package-lang-win32
index ac4d3dc..c7e50b3 100755
--- a/bin/package-lang-win32
+++ b/bin/package-lang-win32
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
#
# A quick hack - hopefully will all go away shortly.
diff --git a/bin/patch-remove b/bin/patch-remove
index 9deeb3e..693927a 100755
--- a/bin/patch-remove
+++ b/bin/patch-remove
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $pattern = shift (@ARGV);
$pattern = 'util/defs/wntmsci' if (!defined $pattern);
diff --git a/bin/potores b/bin/potores
index 353f6f7..0784c52 100755
--- a/bin/potores
+++ b/bin/potores
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use strict;
diff --git a/bin/preloc b/bin/preloc
index 499b25c..eb5d8c7 100755
--- a/bin/preloc
+++ b/bin/preloc
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
#
# Use example: cd /opt/OOInstall/program
diff --git a/bin/re-root b/bin/re-root
index ba5d16e..5df3e27 100755
--- a/bin/re-root
+++ b/bin/re-root
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
sub scan_dirs($$);
diff --git a/bin/relink b/bin/relink
index 992756f..ad68f22 100755
--- a/bin/relink
+++ b/bin/relink
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
my $cwd = '.';
my $dirh;
diff --git a/bin/relocstat b/bin/relocstat
index 33a8f3e..fed61d6 100755
--- a/bin/relocstat
+++ b/bin/relocstat
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
#
# Use example: cd /opt/OOInstall/program
diff --git a/bin/reorder-link b/bin/reorder-link
index b7cd69c..3e14376 100755
--- a/bin/reorder-link
+++ b/bin/reorder-link
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Libraries to re-order for startup speed ...
diff --git a/bin/sloppypatch.pl b/bin/sloppypatch.pl
index 06e4fc4..b72dd62 100755
--- a/bin/sloppypatch.pl
+++ b/bin/sloppypatch.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use File::Temp qw/ :mktemp /;
diff --git a/bin/split-library.pl b/bin/split-library.pl
index decd36e..41e1440 100755
--- a/bin/split-library.pl
+++ b/bin/split-library.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Tool to help you to split a library into more ones. Choose one or more
# objects (let's say <blah>.o) that you need in the library, and:
diff --git a/bin/src-pack2 b/bin/src-pack2
index 664c43f..7097ffb 100755
--- a/bin/src-pack2
+++ b/bin/src-pack2
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
#
# this script is run on go-oo from ~ooweb/ooo-build
diff --git a/bin/strace-rewrite b/bin/strace-rewrite
index 9208171..ca046a4 100755
--- a/bin/strace-rewrite
+++ b/bin/strace-rewrite
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# A trivial script to re-write strace -ttt output
# to be more readable.
diff --git a/bin/svn-pack b/bin/svn-pack
index 4b016a8..5969388 100755
--- a/bin/svn-pack
+++ b/bin/svn-pack
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use File::Temp qw/ tempfile /;
diff --git a/bin/tag-latest-master b/bin/tag-latest-master
index 18d304e..1539f37 100755
--- a/bin/tag-latest-master
+++ b/bin/tag-latest-master
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Generate a flat text file of tags from EIS/cvs
diff --git a/bin/tag-list b/bin/tag-list
index e793181..9db4b88 100755
--- a/bin/tag-list
+++ b/bin/tag-list
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Generate a flat text file of tags from EIS
diff --git a/bin/unused.pl b/bin/unused.pl
index 9800d42..4fa9299 100755
--- a/bin/unused.pl
+++ b/bin/unused.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
$total_defined = 0;
%libs = ();
More information about the ooo-build-commit
mailing list