]> git.wh0rd.org Git - elf2flt.git/commitdiff
configure: deprecate --disable-ld-elf2flt-binary
authorMike Frysinger <vapier@gentoo.org>
Wed, 9 Sep 2020 09:21:51 +0000 (05:21 -0400)
committerMike Frysinger <vapier@gentoo.org>
Wed, 9 Sep 2020 09:22:41 +0000 (05:22 -0400)
We've been defaulting to the compiled linker for years now and no one
has complained.  Lets deprecate the old shell script so we don't have
to maintain two large tools doing the same thing.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
configure
configure.ac

index bca38c34247e81d95dd26500a4e0b391f534da04..be48b95f461d26c63988c0478852b2ddabca2fc3 100755 (executable)
--- a/configure
+++ b/configure
@@ -2273,6 +2273,12 @@ else
 
 fi
 
+if test "$use_ld_elf2flt_binary" != "yes"; then
+       { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --disable-ld-elf2flt-binary is deprecated.
+If you still need this, please let us know before we delete it." >&5
+$as_echo "$as_me: WARNING: --disable-ld-elf2flt-binary is deprecated.
+If you still need this, please let us know before we delete it." >&2;}
+fi
 
 var_yn_to_10() {
        if eval test \"\$$1\" = yes ; then
index 19969b1045f6915a8da0a2267ee01b631a5adbaf..e82eb1d5fefd56e30b3b247ca1dfe0262d55c3e8 100644 (file)
@@ -48,6 +48,10 @@ AC_ARG_ENABLE(ld-elf2flt-binary,
        [ use_ld_elf2flt_binary=$enableval ],
        [ use_ld_elf2flt_binary=yes ]
 )
+if test "$use_ld_elf2flt_binary" != "yes"; then
+       AC_MSG_WARN([--disable-ld-elf2flt-binary is deprecated.
+If you still need this, please let us know before we delete it.])
+fi
 
 dnl convert a yes/no variable to 1/0 for C code
 var_yn_to_10() {