From 6a20f0b473d3d29dcedba5fefcfdede743b43f5f Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Thu, 4 Sep 1997 02:54:24 +0000 Subject: [PATCH] quote the test for $(CC) correctly git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3382 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/des/Makefile.in b/lib/des/Makefile.in index 9bb559d11..df8f71850 100644 --- a/lib/des/Makefile.in +++ b/lib/des/Makefile.in @@ -64,7 +64,7 @@ Wall: # Compile this file without debug if using gcc des_enc.o: des_enc.c @echo "Compiling des_enc.o without debug info" - @if test $(CC) = gcc; then\ + @if test "$(CC)" = gcc; then\ $(CC) -c $(CPPFLAGS) $(DEFS) -I../../include -I$(srcdir) -fomit-frame-pointer -O3 $(PICFLAGS) $(srcdir)/des_enc.c; \ else \ $(CC) -c $(CPPFLAGS) $(DEFS) -I../../include -I$(srcdir) $(CFLAGS) $(PICFLAGS) $(srcdir)/des_enc.c; \