diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-11-03 07:41:31 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-11-03 07:41:31 +0100 |
commit | ee594d6c64f09259d6e80568de4f533c08bc93aa (patch) | |
tree | 60bfae025916eb5456230099ef06ac9b782d25d9 /build-aux | |
parent | e3a268ca8093434d04f351a77e374f8adf63c0a5 (diff) | |
download | gnutls-ee594d6c64f09259d6e80568de4f533c08bc93aa.tar.gz |
Update gnulib files.
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/pmccabe2html | 5 | ||||
-rwxr-xr-x | build-aux/useless-if-before-free | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/build-aux/pmccabe2html b/build-aux/pmccabe2html index 27bb8f3539..bc0f6e80b9 100755 --- a/build-aux/pmccabe2html +++ b/build-aux/pmccabe2html @@ -1,7 +1,8 @@ -#!/usr/bin/awk -f +#!/bin/sh +exec awk -f "$0" "$@" # pmccabe2html - pmccabe to html converter -# Copyright (C) 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/build-aux/useless-if-before-free b/build-aux/useless-if-before-free index abcdef2cda..793c9753e0 100755 --- a/build-aux/useless-if-before-free +++ b/build-aux/useless-if-before-free @@ -1,4 +1,6 @@ -#!/usr/bin/perl -T +eval '(exit $?0)' && eval 'exec perl -wST "$0" ${1+"$@"}' + & eval 'exec perl -wST "$0" $argv:q' + if 0; # Detect instances of "if (p) free (p);". # Likewise for "if (p != NULL) free (p);". And with braces. # Also detect "if (NULL != p) free (p);". @@ -197,6 +199,7 @@ When modifying files, refuse to process anything other than a regular file. EOF ## Local Variables: +## mode: perl ## indent-tabs-mode: nil ## eval: (add-hook 'write-file-hooks 'time-stamp) ## time-stamp-start: "my $VERSION = '" |