diff options
author | Mattias Andrée <maandree@kth.se> | 2019-10-06 09:36:23 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-10-06 09:36:23 +0200 |
commit | 1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e (patch) | |
tree | 697f6c2fb5f3f91ab64e6ed32c45e483bf31e442 /configure | |
parent | Add golden hour and blue hour (diff) | |
download | libred-1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e.tar.gz libred-1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e.tar.bz2 libred-1be48c64b4e5df9e9b1ad69b3bb30b867b0abf9e.tar.xz |
Clean up
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/configure b/configure deleted file mode 100755 index 21eb324..0000000 --- a/configure +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh - -# Copyright (C) 2016 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=libred -MAN_SECTION_SUFFIX= - - -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 - |