[EMAIL PROTECTED] wrote:
      Author: ijr
        Date: 2005-10-08 03:40:01 +0000 (Sat, 08 Oct 2005)
New Revision: 7412
   Changeset: http://cvs.mythtv.org/trac/changeset/7412


Modified:

   trunk/mythtv/configure

This change...

        840       ;;
        841       *)
        842       echo "Unknown option \"$opt\"."
        843       echo "See $0 --help for available options."
        844       exit 1

causes trouble for my gentoo ebuild and probably others, any chance of making it a warning only (patch attached)?

The problem is because this isn't an automake generated configure script configure won't now accept 'standard' options like --host, --build, --mandir, --sharedir or many --enable-* and so on. the gentoo econf command puts these in.

thanks

Neale.


Index: configure
===================================================================
--- configure	(revision 7414)
+++ configure	(working copy)
@@ -839,9 +839,8 @@
   --disable-backend) backend="no"
   ;;
   *)
-  echo "Unknown option \"$opt\"."
+  echo "WARNING: Unknown option \"$opt\"."
   echo "See $0 --help for available options."
-  exit 1
   ;;
   esac
 done
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to