From fb7278b9c6e87853ad165192d8c63d00b0ee5436 Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Mon, 15 Feb 2010 13:21:11 -0700 Subject: [PATCH] Fix minor makefile errors --- Makefile.common | 2 +- db-mysql/Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile.common b/Makefile.common index 455f5a4..3c8fd2b 100644 --- a/Makefile.common +++ b/Makefile.common @@ -6,7 +6,7 @@ OS_AIX=$(shell expr "$(UNAME)" : '.*AIX.*') OS_SUNOS=$(shell expr "$(UNAME)" : '.*SunOS.*') OS_DARWIN=$(shell expr "$(UNAME)" : '.*Darwin.*') ifneq ($(OS_DARWIN),0) - OS_DARWIN64=$(shell expr match "$(DARWIN_LIBC)" '.*x86_64.*') + OS_DARWIN64=$(shell expr "$(DARWIN_LIBC)" : '.*x86_64.*') else OS_DARWIN64=0 endif diff --git a/db-mysql/Makefile b/db-mysql/Makefile index 4198ac8..3616e9b 100644 --- a/db-mysql/Makefile +++ b/db-mysql/Makefile @@ -49,7 +49,6 @@ else ifneq ($(OS_DARWIN64),0) cc $(CFLAGS) -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) cc -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib - @echo "D2:" $(OS_DARWIN64) else ifneq ($(OS_DARWIN),0) cc $(CFLAGS) -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) -- 2.34.1