diff options
author | midipix <writeonce@midipix.org> | 2018-06-03 20:34:30 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-05 08:21:51 -0400 |
commit | c3b00a41c5f74857b9242742c703c0a8ae55931c (patch) | |
tree | 8a6c2dcfe16b21f94675b9928909834bb514f0f0 /configure | |
parent | 313f34ae264eaf73988d16b66d963ef771e96e36 (diff) | |
download | mdso-c3b00a41c5f74857b9242742c703c0a8ae55931c.tar.bz2 mdso-c3b00a41c5f74857b9242742c703c0a8ae55931c.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 |