There is an error on line 29 of variables.c in bash-3.1.
It should read:
#include <sys/netmgr.h>
not
#include <sy/netmgr.h>

Attached is a patch that fixes this, although it would be easier to
fix it manually.

Ben
--- bash-3.1/variables.c        2005-11-12 20:22:37.000000000 -0600
+++ bash-3.1.orig/variables.c   2006-09-18 10:07:21.000000000 -0500
@@ -26,7 +26,7 @@
 
 #if defined (qnx)
 #  if defined (qnx6)
-#    include <sy/netmgr.h>
+#    include <sys/netmgr.h>
 #  else
 #    include <sys/vc.h>
 #  endif /* !qnx6 */
_______________________________________________
Bug-bash mailing list
Bug-bash@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-bash

Reply via email to