From: Sami Kerola Date: Sun, 12 Jun 2011 23:10:11 +0000 (+0200) Subject: build-sys: remove unnecessary files from getopt X-Git-Tag: v2.20-rc1~138^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8796caca6f5d22563c7e021844073b2abd4e5d90;p=thirdparty%2Futil-linux.git build-sys: remove unnecessary files from getopt The Linux Software Map (lsm) file is not maintained, and the test scripts where more confusing than advicing. Signed-off-by: Sami Kerola --- diff --git a/getopt/Makefile.am b/getopt/Makefile.am index bd3e7942ce..7c1b66b2c0 100644 --- a/getopt/Makefile.am +++ b/getopt/Makefile.am @@ -4,8 +4,7 @@ usrbin_exec_PROGRAMS = getopt dist_man_MANS = getopt.1 exampledir = $(datadir)/getopt/ -dist_example_SCRIPTS = getopt-parse.bash getopt-parse.tcsh \ - getopt-test.bash getopt-test.tcsh +dist_example_SCRIPTS = getopt-parse.bash getopt-parse.tcsh EXTRA_DIST = README Changelog COPYING diff --git a/getopt/getopt-1.1.3.lsm b/getopt/getopt-1.1.3.lsm deleted file mode 100644 index 5849700d59..0000000000 --- a/getopt/getopt-1.1.3.lsm +++ /dev/null @@ -1,16 +0,0 @@ -Begin3 -Title: Getopt -Version: 1.1.3 -Entered-date: 23JAN02 -Description: An improved implementation of getopt(1), a program to parse - options within a shell script. Fully compatible with other - getopt(1) implementations, but with many additions like - long options and mixing of options and parameters. -Keywords: getopt script parse bash tcsh -Author: frodol@dds.nl (Frodo Looijaard) -Primary-site: http://huizen.dds.nl/~frodol - 28kB getopt-1.1.3.tar.gz - 689 getopt-1.1.3.lsm -Copying-policy: GPL -End - diff --git a/getopt/getopt-test.bash b/getopt/getopt-test.bash deleted file mode 100755 index 149e1f9b05..0000000000 --- a/getopt/getopt-test.bash +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -if `getopt -T >/dev/null 2>&1` ; [ $? = 4 ] ; then - echo "Enhanced getopt(1)" -else - echo "Old getopt(1)" -fi diff --git a/getopt/getopt-test.tcsh b/getopt/getopt-test.tcsh deleted file mode 100755 index d661e767de..0000000000 --- a/getopt/getopt-test.tcsh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/tcsh -getopt -T >&/dev/null -if ( $status == 4) then - echo "Enhanced getopt(1)" -else - echo "Old getopt(1)" -endif