diff options
author | Erico Nunes <nunes.erico@gmail.com> | 2016-12-06 00:07:15 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-12-07 23:41:00 +0100 |
commit | 3eb51f16d2d24abeda8d27d3f1458afdb48db6d8 (patch) | |
tree | c15191e7bf3ac1fa9f8c142bb9cdbd180a2dc17e | |
parent | 586a3093b92809c1bacde4f45157d4d3b96fbaea (diff) | |
download | buildroot-3eb51f16d2d24abeda8d27d3f1458afdb48db6d8.tar.gz buildroot-3eb51f16d2d24abeda8d27d3f1458afdb48db6d8.zip |
efivar: fix comment after uClibc compatibility patch
uClibc support was recently added to efivar through a small
compatibility patch.
This commit updates a comment in the efivar recipe to reflect this, as
we no longer have glibc as the only supported C library.
Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/efivar/efivar.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/efivar/efivar.mk b/package/efivar/efivar.mk index 913322e2f6..84735b8fb0 100644 --- a/package/efivar/efivar.mk +++ b/package/efivar/efivar.mk @@ -12,8 +12,8 @@ EFIVAR_DEPENDENCIES = popt EFIVAR_INSTALL_STAGING = YES # BINTARGETS is set to skip efivar-static which requires static popt, -# and since we depend on glibc, we will never be built in a -# static-only environment. +# and since we depend on dynamic libraries, efivar will never be built +# in a static-only environment. # -fPIC is needed at least on MIPS, otherwise fails to build shared # -library. EFIVAR_MAKE_OPTS = \ |