From 51680dd7aa2409128170eeba066ce40b23b1e9e6 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Thu, 2 May 2002 21:27:40 +0000 Subject: [PATCH] Fixed the -q for the link command-line. --- src/xpdev/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xpdev/GNUmakefile b/src/xpdev/GNUmakefile index 9655a07e09..1778e7a332 100644 --- a/src/xpdev/GNUmakefile +++ b/src/xpdev/GNUmakefile @@ -42,7 +42,7 @@ CFLAGS += -D_THREAD_SAFE LFLAGS := -pthread else # Linux / Other UNIX ifdef bcc -LFLAGS := -q libpthread.a +LFLAGS := libpthread.a else LFLAGS := -lpthread endif @@ -75,5 +75,5 @@ $(ODIR): # Executable Build Rule $(WRAPTEST): $(ODIR)/wraptest.o $(OBJS) @echo Linking $@ - @$(CC) -o $@ $(LFLAGS) $^ + @$(CC) $(CFLAGS) -o $@ $(LFLAGS) $^ -- GitLab