diff options
author | midipix <writeonce@midipix.org> | 2018-06-03 20:34:30 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-03 20:34:30 -0400 |
commit | 7e30019bd52cb1743ccf3d3a8360e2afe6056d03 (patch) | |
tree | ce0f8fb12db16f3216e5c05110e17e614d5cf049 /configure | |
parent | 2246d8d848eb18a8e7acf51efe31db6a4adfbeae (diff) | |
download | slibtool-7e30019bd52cb1743ccf3d3a8360e2afe6056d03.tar.bz2 slibtool-7e30019bd52cb1743ccf3d3a8360e2afe6056d03.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 |