diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-29 12:05:13 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-12-31 00:25:28 +0100 |
commit | 36e6053a23fbd360ab750818441a918faf00b445 (patch) | |
tree | f6748766255600c1282a0e213a7999dde9bfda23 /package/oprofile/oprofile.mk | |
parent | 2fbcee2fd1651b9d8ed85a5598b24787db344110 (diff) | |
download | buildroot-36e6053a23fbd360ab750818441a918faf00b445.tar.gz buildroot-36e6053a23fbd360ab750818441a918faf00b445.zip |
oprofile: cleanup the style of the OPROFILE_BINARIES definition
There is no need to repeat OPROFILE_BINARIES += many times to add more
values to the variable. Just define it once with all the values, as we
do everywhere else in Buildroot.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/oprofile/oprofile.mk')
-rw-r--r-- | package/oprofile/oprofile.mk | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/package/oprofile/oprofile.mk b/package/oprofile/oprofile.mk index 0c884b9b7e..1322d9d695 100644 --- a/package/oprofile/oprofile.mk +++ b/package/oprofile/oprofile.mk @@ -12,10 +12,12 @@ OPROFILE_CONF_OPTS = \ --disable-account-check \ --enable-gui=no \ --with-kernel=$(STAGING_DIR)/usr -OPROFILE_BINARIES = utils/ophelp pp/opannotate pp/oparchive pp/opgprof -OPROFILE_BINARIES += pp/opreport opjitconv/opjitconv -OPROFILE_BINARIES += utils/op-check-perfevents libabi/opimport -OPROFILE_BINARIES += pe_counting/ocount + +OPROFILE_BINARIES = \ + utils/ophelp pp/opannotate pp/oparchive pp/opgprof \ + pp/opreport opjitconv/opjitconv \ + utils/op-check-perfevents libabi/opimport \ + pe_counting/ocount # No perf_events support in kernel for avr32 ifneq ($(BR2_avr32),y) |