The option given to AC_ARG_ENABLE() have typos in them -- they use an underscore instead of a dash.
Signed-off-by: Mike Frysinger <[email protected]> --- configure.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index e18e41c..eb9733f 100644 --- a/configure.in +++ b/configure.in @@ -49,13 +49,13 @@ AC_ARG_ENABLE(got-check, [ got_check=yes ] ) -AC_ARG_ENABLE(emit_relocs, +AC_ARG_ENABLE(emit-relocs, [ --disable-emit-relocs - don't use the --emit-relocs (-q) linker option ], [ emit_relocs=$enableval ], [ emit_relocs=yes ] ) -AC_ARG_ENABLE(emit_ctor_dtor, +AC_ARG_ENABLE(emit-ctor-dtor, AS_HELP_STRING([--enable-emit-ctor-dtor], [manually create ctor/dtor list]), [ emit_ctor_dtor=$enableval ], [ emit_ctor_dtor=no ] -- 1.6.3 _______________________________________________ uClinux-dev mailing list [email protected] http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by [email protected] To unsubscribe see: http://mailman.uclinux.org/mailman/options/uclinux-dev
