From: Roland McGrath Date: Mon, 13 May 2013 16:41:11 +0000 (+0000) Subject: gold/ X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2771de86e92340324f9d6a5312ee383718305128;p=thirdparty%2Fbinutils-gdb.git gold/ * options.h (General_options): Remove leading space from help messages for -nostdlib and --rosegment. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index 45633468a0c..d8a326e6bdd 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -5,6 +5,11 @@ * layout.cc (set_segment_offsets): Let user option override target->rosegment_gap(). +2013-05-10 Roland McGrath + + * options.h (General_options): Remove leading space from help + messages for -nostdlib and --rosegment. + 2012-12-06 Roland McGrath * configure.ac (HAVE_ZLIB): Use AM_ZLIB instead of AC_SEARCH_LIBS. diff --git a/gold/options.h b/gold/options.h index e1b6fc8f4ce..e7a7e5113e1 100644 --- a/gold/options.h +++ b/gold/options.h @@ -880,11 +880,11 @@ class General_options N_("Add directory to search path"), N_("DIR")); DEFINE_bool(nostdlib, options::ONE_DASH, '\0', false, - N_(" Only search directories specified on the command line."), + N_("Only search directories specified on the command line."), NULL); DEFINE_bool(rosegment, options::TWO_DASHES, '\0', false, - N_(" Put read-only non-executable sections in their own segment"), + N_("Put read-only non-executable sections in their own segment"), NULL); DEFINE_uint64(rosegment_gap, options::TWO_DASHES, '\0', -1U,