From aaf4c5c1a143b59be9247652e08141c5e76f8c53 Mon Sep 17 00:00:00 2001 From: Bert Hubert Date: Mon, 30 Jun 2008 20:57:02 +0000 Subject: [PATCH] fix compatability with ancient 'Make' git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@1229 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- pdns/Makefile-recursor | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pdns/Makefile-recursor b/pdns/Makefile-recursor index 3738cb769..53dda7c39 100644 --- a/pdns/Makefile-recursor +++ b/pdns/Makefile-recursor @@ -42,11 +42,13 @@ ifeq ($(STATIC),semi) STATICFLAGS=-Wl,-Bstatic -lstdc++ $(LUALIBS) -lgcc -Wl,-Bdynamic -static-libgcc -lm -lc LINKCC=$(CC) LDFLAGS += malloc.o -ldl -lm -else ifeq ($(STATIC),full) +else + ifeq ($(STATIC),full) STATICFLAGS=-lstdc++ $(LUALIBS) -ldl -lm -static LINKCC=$(CC) -else + else LDFLAGS += malloc.o $(LUALIBS) + endif endif -- 2.50.0