diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-10 23:46:54 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-04-11 21:10:35 +0200 |
commit | 423399ba56d520410a8d3a0525c26ddd9fba11d4 (patch) | |
tree | edf241b238adbd9a8bdd6406e75a7372e55b291c /package/gettext/gettext.mk | |
parent | 1d1b55a25045f066b57e05f6d0a609449cb97910 (diff) |
Get rid of useless OpenMP related code
It seems that there was an intention to add BR2_ENABLE_OPENMP someday,
but it was in June 2007 (commit
c81807a9d71fba9f35eeb7e3f3b56bda4b2e0edd) and since then, nothing
occured. Therefore, get rid of this code, and just pass
--disable-openmp to gettext to keep the current behaviour.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gettext/gettext.mk')
-rw-r--r-- | package/gettext/gettext.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gettext/gettext.mk b/package/gettext/gettext.mk index 5b045603c..8ec8bdfcb 100644 --- a/package/gettext/gettext.mk +++ b/package/gettext/gettext.mk @@ -93,7 +93,7 @@ $(GETTEXT_DIR)/.configured: $(GETTEXT_DIR)/.unpacked --disable-libasprintf \ --enable-shared \ $(IGNORE_EXTERNAL_GETTEXT) \ - $(OPENMP) \ + --disable-openmp \ ) touch $@ |