diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2012-11-22 18:21:12 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2012-11-22 18:21:12 +0000 |
commit | a00ccece1b929f54a7205ad8c412c3da2f0f5375 (patch) | |
tree | 58979d4627d540030ca55967f244656955f7a820 /databases/redis/files/patch-deps-Makefile | |
parent | Update from 2.6.4 to 2.6.5. (diff) |
Use more canonical names for patches.
No functionaly changes.
Don't bump PORTREVISION.
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=307662
Diffstat (limited to 'databases/redis/files/patch-deps-Makefile')
-rw-r--r-- | databases/redis/files/patch-deps-Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/databases/redis/files/patch-deps-Makefile b/databases/redis/files/patch-deps-Makefile new file mode 100644 index 000000000000..793a03c9bc61 --- /dev/null +++ b/databases/redis/files/patch-deps-Makefile @@ -0,0 +1,17 @@ +--- deps/Makefile.orig 2012-07-02 04:18:07.000000000 +0400 ++++ deps/Makefile 2012-07-02 04:18:56.000000000 +0400 +@@ -58,12 +58,12 @@ + LUA_CFLAGS= -D__C99FEATURES__=1 + endif + +-LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) ++LUA_CFLAGS+= -Wall -DLUA_ANSI $(CFLAGS) + LUA_LDFLAGS+= $(LDFLAGS) + + lua: .make-prerequisites + @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) +- cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" ++ cd lua/src && $(MAKE) all CC="$(CC)" CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" + + .PHONY: lua + |