diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-01-20 09:45:47 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-01-20 20:49:02 +0100 |
commit | 0e4d25ff0fc5d5698e148a53d751f5fc4b22860a (patch) | |
tree | 1cb8fc7ba9d8bfd954b38e1d095589f373b1c2a8 /package/zlib/zlib.mk | |
parent | 4ebbd5f636d4fbe63b1a2c1c02aa0431e09effa8 (diff) | |
download | buildroot-novena-0e4d25ff0fc5d5698e148a53d751f5fc4b22860a.tar.gz buildroot-novena-0e4d25ff0fc5d5698e148a53d751f5fc4b22860a.zip |
packages: remove all := signs
Finally get rid of all := used for variable definitions in packages,
as we suggest in our manual and during the review of new packages.
While I was at it, I also sometimes added a few missing new lines
between the header and the first variable definition.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/zlib/zlib.mk')
-rw-r--r-- | package/zlib/zlib.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/zlib/zlib.mk b/package/zlib/zlib.mk index f127138db..372383942 100644 --- a/package/zlib/zlib.mk +++ b/package/zlib/zlib.mk @@ -12,11 +12,11 @@ ZLIB_LICENSE_FILES = README ZLIB_INSTALL_STAGING = YES ifeq ($(BR2_PREFER_STATIC_LIB),y) -ZLIB_PIC := -ZLIB_SHARED := --static +ZLIB_PIC = +ZLIB_SHARED = --static else -ZLIB_PIC := -fPIC -ZLIB_SHARED := --shared +ZLIB_PIC = -fPIC +ZLIB_SHARED = --shared endif define ZLIB_CONFIGURE_CMDS |