diff options
author | Mattias Andrée <maandree@kth.se> | 2017-12-10 23:55:26 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-12-10 23:55:26 +0100 |
commit | f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a (patch) | |
tree | 5ee68c7907baf8666d5d585ae491129ffcfdb6e5 /configure | |
parent | update news and makefile (diff) | |
download | sleeping-getty-f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a.tar.gz sleeping-getty-f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a.tar.bz2 sleeping-getty-f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a.tar.xz |
Simplify and cahgne license1.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rwxr-xr-x | configure | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/configure b/configure deleted file mode 100755 index d2febbb..0000000 --- a/configure +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -# Copyright (C) 2015 Mattias Andrée <maandree@member.fsf.org> -# -# Copying and distribution of this file, with or without modification, -# are permitted in any medium without royalty provided the copyright -# notice and this notice are preserved. This file is offered as-is, -# without any warranty. - - -# Run './configure --help' for usage information. - - -PKGNAME=sleeping-getty -MAN_SECTION_SUFFIX= -MAN_SECTION=8 - - -list_optional_features_help () -{ - true -} - -unrecognised_argument () -{ - option="${1}" - case "${option}" in - (--build | --target | --host) - incomplete="${option}" ;; - (--build=*) - ;; - (--target=*) - ;; - (--host=*) - ;; - (*) - ;; - esac -} - -. "$(dirname "${0}")"/mk/configure - - -cat <<EOF - -You can now run 'make && make install'. - -EOF - |