From 6c98b466eb071d82c58abd957d1059b085fdf924 Mon Sep 17 00:00:00 2001 From: immarvin Date: Tue, 8 Jan 2013 08:30:21 +0000 Subject: [PATCH] fix defect #3240, enable bundling of GetOptions to avoid ambiguity git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14798 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client/bin/ppping | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xCAT-client/bin/ppping b/xCAT-client/bin/ppping index 206d60ef0..615fd4313 100755 --- a/xCAT-client/bin/ppping +++ b/xCAT-client/bin/ppping @@ -35,6 +35,8 @@ my $USAGE="Usage: ppping [-i|--interface interfaces] [-d|--debug] [-V|--verbose] ppping -v|--version\n"; # Parse the options +require Getopt::Long; +Getopt::Long::Configure ("bundling"); if(!GetOptions( 'h|help' => \$::HELP, 'v|version' => \$::VERSION,