diff options
author | midipix <writeonce@midipix.org> | 2018-06-03 20:34:30 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-05 08:21:50 -0400 |
commit | 974750bcda948d70b294dddaa79d8ef71d36fdad (patch) | |
tree | 46b3aa6d8965047051505ab8c9a58659008ec327 /configure | |
parent | c2ba00e77ec3a2113268e7e334505572c5f58828 (diff) | |
download | dalist-974750bcda948d70b294dddaa79d8ef71d36fdad.tar.bz2 dalist-974750bcda948d70b294dddaa79d8ef71d36fdad.tar.xz |
build system: configure: added initial --program-prefix support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -737,6 +737,9 @@ for arg ; do --nickname=*) mb_nickname=${arg#*=} ;; + --program-prefix=*) + mb_program_prefix=${arg#*=} + ;; --avoid-version) mb_avoid_version='yes' ;; @@ -756,6 +759,10 @@ done # three: validation verify_source_directory +if ! [ -z "$mb_program_prefix" ]; then + error_msg "--program-prefix is not yet fully support (must be null)." +fi + # four: defaults |