diff options
author | midipix <writeonce@midipix.org> | 2018-06-03 20:34:30 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-05 08:21:48 -0400 |
commit | 18e191b1cdd3953b4ec85a43935dcfb73df9c369 (patch) | |
tree | afb76c6a731945f6c34abce20308da9c194c17ad /configure | |
parent | 23485bea0d9f0432eeef0a309023fb7024082a92 (diff) | |
download | apimagic-18e191b1cdd3953b4ec85a43935dcfb73df9c369.tar.bz2 apimagic-18e191b1cdd3953b4ec85a43935dcfb73df9c369.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 |