diff options
author | Petr Mladek <pmladek@suse.cz> | 2011-03-30 19:55:22 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2011-03-30 19:55:22 +0200 |
commit | a43360f52338574974bcf7badb71e3d3ba6ccf14 (patch) | |
tree | 09838fbce1ca94e456d5b7e320d02ed351c6a902 /connectivity | |
parent | bd2c22c758d30989f5422139a1d280811aefb1bb (diff) |
buildfix-evo1-vs-evo2.diff: Evo address books conflics (bnc#496902, i#101439)
build either the driver for Evolution 1.x or 2.x; they produce the same binary
and configuration, so they can't be built at once; Evolution 1.x address book
is obsolete anyway
Diffstat (limited to 'connectivity')
-rwxr-xr-x | connectivity/source/drivers/evoab/makefile.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/connectivity/source/drivers/evoab/makefile.mk b/connectivity/source/drivers/evoab/makefile.mk index 82e0ce4b70b0..4c9357b71ead 100755 --- a/connectivity/source/drivers/evoab/makefile.mk +++ b/connectivity/source/drivers/evoab/makefile.mk @@ -32,6 +32,11 @@ TARGET=evoab VISIBILITY_HIDDEN=TRUE +.IF "$(ENABLE_EVOAB2)"=="TRUE" +dummy: + @echo "Evolution 1.x Addressbook build disabled in favour of Evolution 2.x Addressbook" +.ELSE + # --- Settings ---------------------------------- .IF "$(DBGUTIL_OJ)"!="" @@ -101,6 +106,7 @@ DEF1NAME= $(SHL1TARGET) dummy: @echo "Nothing to build for GUI $(GUI)" .ENDIF +.ENDIF # --- Targets ---------------------------------- |