diff options
| author | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2007-04-12 20:30:08 +0000 |
|---|---|---|
| committer | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2007-04-12 20:30:08 +0000 |
| commit | b0d8ed94fe9e74afb49fdf5f11e4add29879c65c (patch) | |
| tree | b20167235628771046e940a82a906a6d0991ee4a /packaging/utils/errcheck | |
| parent | ea939d07c84d2a8e51215458063fc05e9c399290 (diff) | |
| download | vyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.tar.gz vyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.zip | |
[svn-upgrade] Integrating new upstream version, strongswan (4.1.1)
Diffstat (limited to 'packaging/utils/errcheck')
| -rwxr-xr-x | packaging/utils/errcheck | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/packaging/utils/errcheck b/packaging/utils/errcheck deleted file mode 100755 index 1a1ab5037..000000000 --- a/packaging/utils/errcheck +++ /dev/null @@ -1,40 +0,0 @@ -#! /bin/sh -# internal utility for testing kernel make output for errors -# Copyright (C) 1998, 1999 Henry Spencer. -# -# 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 the -# Free Software Foundation; either version 2 of the License, or (at your -# option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# RCSID $Id: errcheck,v 1.1 2004/03/15 20:35:27 as Exp $ - -# the errors.[och] stuff is for math emulation -# the HiSax nonsense is due to a Red Hat 5.2 botch -# RH7.2 "make dep" builds stuff in drivers/macintosh (!!) using <asm/init.h> -# Red Hat's 2.2.19 whines about function read_rx_long_length_errors in e100.c -# 2.4.18: 53c700.h:40:2: #error "Config.in must define either CONFIG_53C700_IO_MAPPED or CONFIG_53C700_MEM_MAPPED to use this scsi core." -oops="`sed -e 's/-Werror/-Weror/g' \ - -e '/errors*\.[och]/s/errors*\./eror./g' \ - -e '/scsi_error/s//scsi_eror/' \ - -e '/KBUILD_BASENAME=errors/s/errors/eror/g' \ - -e '/#error .HiSax: No cards configured/s/error/eror/' \ - -e '/#error .<asm.init.h> should never be used/s/error/eror/' \ - -e '/53c700.h:[0-9:]* #error "Config.in must define either CONFIG_53C700_IO_MAPPED or CONFIG_53C700_MEM_MAPPED to use this scsi core."/s/error/eror/' \ - -e '/^e100.c: In function/s/length_errors/length_erors/' $* | - egrep -i 'error|\*\*\*' | egrep -v ': warning:'`" -if test " $oops" != " " -then - echo - echo "***ERRORS DETECTED in $* (examine file for details):" - echo "$oops" - echo - exit 1 -else - exit 0 -fi |
