diff options
author | Samuel Martin <s.martin49@gmail.com> | 2014-03-01 16:52:36 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-01 17:13:30 +0100 |
commit | 6ff1538579ed15cc9c682f8131463b43240399ab (patch) | |
tree | 714eb1d216e969ca69298d47a9a178c6ef5631dd /package/php/php.mk | |
parent | 1175750dcece1f2de026c8fec473816a1bb8b422 (diff) | |
download | buildroot-6ff1538579ed15cc9c682f8131463b43240399ab.tar.gz buildroot-6ff1538579ed15cc9c682f8131463b43240399ab.zip |
php: fix typo
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/php/php.mk')
-rw-r--r-- | package/php/php.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/php/php.mk b/package/php/php.mk index f01e131263..c5da9e7bd4 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -126,7 +126,7 @@ ifeq ($(BR2_PACKAGE_PHP_EXT_INTL),y) # The intl module is implemented in C++, but PHP fails to use # g++ as the compiler for the final link. As a workaround, # tell it to link libstdc++. - PHP_EXTRA_LIBS + = -lstdc++ + PHP_EXTRA_LIBS += -lstdc++ endif ifeq ($(BR2_PACKAGE_PHP_EXT_GMP),y) |