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/sox | |
| 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/sox')
| -rw-r--r-- | package/sox/sox.mk | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/package/sox/sox.mk b/package/sox/sox.mk index 508faf72d4..97776fcc25 100644 --- a/package/sox/sox.mk +++ b/package/sox/sox.mk @@ -7,92 +7,92 @@ SOX_VERSION = 14.4.1 SOX_SITE = http://downloads.sourceforge.net/project/sox/sox/$(SOX_VERSION) SOX_DEPENDENCIES = host-pkgconf -SOX_CONF_OPT = --with-distro="Buildroot" --without-ffmpeg --disable-gomp +SOX_CONF_OPTS = --with-distro="Buildroot" --without-ffmpeg --disable-gomp SOX_LICENSE = GPLv2+ (sox binary), LGPLv2.1+ (libraries) SOX_LICENSE_FILES = LICENSE.GPL LICENSE.LGPL ifeq ($(BR2_PACKAGE_ALSA_LIB_PCM),y) SOX_DEPENDENCIES += alsa-lib else -SOX_CONF_OPT += --without-alsa +SOX_CONF_OPTS += --without-alsa endif ifeq ($(BR2_PACKAGE_FILE),y) SOX_DEPENDENCIES += file else -SOX_CONF_OPT += --without-magic +SOX_CONF_OPTS += --without-magic endif ifeq ($(BR2_PACKAGE_FLAC),y) SOX_DEPENDENCIES += flac else -SOX_CONF_OPT += --without-flac +SOX_CONF_OPTS += --without-flac endif ifeq ($(BR2_PACKAGE_LAME),y) SOX_DEPENDENCIES += lame else -SOX_CONF_OPT += --without-lame +SOX_CONF_OPTS += --without-lame endif ifeq ($(BR2_PACKAGE_LIBAO),y) SOX_DEPENDENCIES += libao else -SOX_CONF_OPT += --without-ao +SOX_CONF_OPTS += --without-ao endif ifeq ($(BR2_PACKAGE_LIBID3TAG),y) SOX_DEPENDENCIES += libid3tag else -SOX_CONF_OPT += --without-id3tag +SOX_CONF_OPTS += --without-id3tag endif ifeq ($(BR2_PACKAGE_LIBMAD),y) SOX_DEPENDENCIES += libmad else -SOX_CONF_OPT += --without-mad +SOX_CONF_OPTS += --without-mad endif ifeq ($(BR2_PACKAGE_LIBPNG),y) SOX_DEPENDENCIES += libpng else -SOX_CONF_OPT += --without-png +SOX_CONF_OPTS += --without-png endif ifeq ($(BR2_PACKAGE_LIBSNDFILE),y) SOX_DEPENDENCIES += libsndfile else -SOX_CONF_OPT += --without-sndfile +SOX_CONF_OPTS += --without-sndfile endif ifeq ($(BR2_PACKAGE_LIBVORBIS),y) SOX_DEPENDENCIES += libvorbis else -SOX_CONF_OPT += --without-oggvorbis +SOX_CONF_OPTS += --without-oggvorbis endif ifeq ($(BR2_PACKAGE_OPENCORE_AMR),y) SOX_DEPENDENCIES += opencore-amr else -SOX_CONF_OPT += --without-amrwb --without-amrnb +SOX_CONF_OPTS += --without-amrwb --without-amrnb endif ifeq ($(BR2_PACKAGE_PULSEAUDIO),y) SOX_DEPENDENCIES += pulseaudio else -SOX_CONF_OPT += --without-pulseaudio +SOX_CONF_OPTS += --without-pulseaudio endif ifeq ($(BR2_PACKAGE_TWOLAME),y) SOX_DEPENDENCIES += twolame else -SOX_CONF_OPT += --without-twolame +SOX_CONF_OPTS += --without-twolame endif ifeq ($(BR2_PACKAGE_WAVPACK),y) SOX_DEPENDENCIES += wavpack else -SOX_CONF_OPT += --without-wavpack +SOX_CONF_OPTS += --without-wavpack endif $(eval $(autotools-package)) |

