Android.mk: modify TARGET_BOARD if condition to support Origen 4412

The corresponding CFLAG is valid for both variants of Origen so we
need to modify this if condition.

Change-Id: I1164a613dbebbc2183d772a5bf3aa79000c32a48
diff --git a/Android.mk b/Android.mk
index 951d930..b6b3208 100644
--- a/Android.mk
+++ b/Android.mk
@@ -14,7 +14,7 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-ifeq ($(TARGET_BOARD_PLATFORM),origen)
+ifneq (,$(filter $(TARGET_PRODUCT),origen origen_quad))
 LOCAL_PATH := $(call my-dir)
 include $(CLEAR_VARS)
 
@@ -44,4 +44,4 @@
 LOCAL_WHOLE_STATIC_LIBRARIES := libUMP
 LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/
 include $(BUILD_SHARED_LIBRARY)
-endif
\ No newline at end of file
+endif