diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-25 14:59:02 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-25 14:59:02 +0200 |
commit | a541135d0d843b62a54d0a637d3976a0df437d01 (patch) | |
tree | 5a2fc8ef1c988c2f9ce6443d5c865932f0f607f5 /libcdr | |
parent | d0c3eaf87f8335a70d25e8cd6e91f2c7d4e47302 (diff) |
Avoid stray && in the system ICU case
Change-Id: I65a803824fd79cd6ac5136861bba0b64998d0868
Diffstat (limited to 'libcdr')
-rw-r--r-- | libcdr/ExternalProject_libcdr.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcdr/ExternalProject_libcdr.mk b/libcdr/ExternalProject_libcdr.mk index caf53c6832b3..4ec7d09e6525 100644 --- a/libcdr/ExternalProject_libcdr.mk +++ b/libcdr/ExternalProject_libcdr.mk @@ -61,7 +61,7 @@ else $(call gb_ExternalProject_get_state_target,libcdr,build) : cd $(EXTERNAL_WORKDIR) \ && export PKG_CONFIG="" \ - && $(if $(filter NO,$(SYSTEM_ICU)), export ICU_LIBS=" " ICU_CFLAGS="-I$(OUTDIR)/inc/external") \ + $(if $(filter NO,$(SYSTEM_ICU)),&& export ICU_LIBS=" " ICU_CFLAGS="-I$(OUTDIR)/inc/external") \ && ./configure \ --with-pic \ --enable-static \ |