diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-09-27 21:32:44 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-04 18:54:16 +0200 |
commit | aaffd209fae91a733fe0becb72268f87bf4ea369 (patch) | |
tree | 40569895ef8a09c605060e2164d86567a12f9889 /package/gdb | |
parent | 1d2574ac6f6d30044ee138b6235c50a6a3998d8a (diff) | |
download | buildroot-aaffd209fae91a733fe0becb72268f87bf4ea369.tar.gz buildroot-aaffd209fae91a733fe0becb72268f87bf4ea369.zip |
packages: rename FOO_CONF_OPT into FOO_CONF_OPTS
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS,
make the same change for FOO_CONF_OPT.
Sed command used:
find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g'
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gdb')
-rw-r--r-- | package/gdb/gdb.mk | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk index e01431bb25..e8c65885ba 100644 --- a/package/gdb/gdb.mk +++ b/package/gdb/gdb.mk @@ -58,7 +58,7 @@ endif # When gdb sources are fetched from the binutils-gdb repository, they # also contain the binutils sources, but binutils shouldn't be built, # so we disable it. -GDB_DISABLE_BINUTILS_CONF_OPT = \ +GDB_DISABLE_BINUTILS_CONF_OPTS = \ --disable-binutils \ --disable-ld \ --disable-gas @@ -74,28 +74,28 @@ GDB_CONF_ENV = \ bash_cv_have_mbstate_t=yes \ gdb_cv_func_sigsetjmp=yes -GDB_CONF_OPT = \ +GDB_CONF_OPTS = \ --without-uiout \ --disable-gdbtk \ --without-x \ --disable-sim \ - $(GDB_DISABLE_BINUTILS_CONF_OPT) \ + $(GDB_DISABLE_BINUTILS_CONF_OPTS) \ $(if $(BR2_PACKAGE_GDB_SERVER),--enable-gdbserver) \ --with-curses \ --without-included-gettext \ --disable-werror ifeq ($(BR2_PACKAGE_GDB_TUI),y) - GDB_CONF_OPT += --enable-tui + GDB_CONF_OPTS += --enable-tui else - GDB_CONF_OPT += --disable-tui + GDB_CONF_OPTS += --disable-tui endif ifeq ($(BR2_PACKAGE_GDB_PYTHON),y) - GDB_CONF_OPT += --with-python=$(TOPDIR)/package/gdb/gdb-python-config + GDB_CONF_OPTS += --with-python=$(TOPDIR)/package/gdb/gdb-python-config GDB_DEPENDENCIES += python else - GDB_CONF_OPT += --without-python + GDB_CONF_OPTS += --without-python endif # This removes some unneeded Python scripts and XML target description @@ -127,7 +127,7 @@ endif # * --disable-shared, otherwise the old 6.7 version specific to AVR32 # doesn't build because it wants to link a shared libbfd.so against # non-PIC liberty.a. -HOST_GDB_CONF_OPT = \ +HOST_GDB_CONF_OPTS = \ --target=$(GNU_TARGET_NAME) \ --enable-static --disable-shared \ --without-uiout \ @@ -136,20 +136,20 @@ HOST_GDB_CONF_OPT = \ --enable-threads \ --disable-werror \ --without-included-gettext \ - $(GDB_DISABLE_BINUTILS_CONF_OPT) \ + $(GDB_DISABLE_BINUTILS_CONF_OPTS) \ --disable-sim ifeq ($(BR2_PACKAGE_HOST_GDB_TUI),y) - HOST_GDB_CONF_OPT += --enable-tui + HOST_GDB_CONF_OPTS += --enable-tui else - HOST_GDB_CONF_OPT += --disable-tui + HOST_GDB_CONF_OPTS += --disable-tui endif ifeq ($(BR2_PACKAGE_HOST_GDB_PYTHON),y) - HOST_GDB_CONF_OPT += --with-python + HOST_GDB_CONF_OPTS += --with-python HOST_GDB_DEPENDENCIES += host-python else - HOST_GDB_CONF_OPT += --without-python + HOST_GDB_CONF_OPTS += --without-python endif ifeq ($(GDB_FROM_GIT),y) |