diff options
author | Leonard Kugis <leonard@kug.is> | 2025-10-02 00:03:55 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-10-02 00:03:55 +0200 |
commit | 65e1d31000f6a31c882134277758b03cb980581a (patch) | |
tree | 718d7b040ab17ff8f6ab21f274d65c732efb3268 /autogen.sh | |
parent | 98f6fd6d3513f65e3f065d62c647ae884830cde6 (diff) | |
download | bindfs-65e1d31000f6a31c882134277758b03cb980581a.tar.gz |
Removed autotools files
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index e3844a7..0000000 --- a/autogen.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -e - -autoreconf -fi - -if [ "$1" == "-d" ]; then - shift; - echo "Running ./configure" - echo - ./configure "$@" -elif [ -n "$1" ]; then - echo - echo "./configure $@" - ./configure "$@" -else - echo - echo "autogen.sh completed successfully." - echo "Now run ./configure with the appropriate flags and then make." -fi - |