From 9cb57888d5c941dc8fac908fbc727367ee71fa1c Mon Sep 17 00:00:00 2001 From: rlar Date: Fri, 8 Oct 2010 17:18:55 +0000 Subject: [PATCH] too much quoting caused an error for quoted things in CFLAGS --- ChangeLog | 5 +++++ src/xspice/icm/Makefile | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index dd553b4b9..87afeafc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-10-08 Robert Larice + * src/xspice/icm/Makefile : + too much quoting caused an error for quoted things in CFLAGS + ( CFLAGS=-D"SIGNAL_FUNCTION='void(*)(int)'" ./configure ) + 2010-10-08 Robert Larice * src/frontend/spiceif.c , * src/frontend/spiceif.h , diff --git a/src/xspice/icm/Makefile b/src/xspice/icm/Makefile index 270e2c42c..683d64157 100644 --- a/src/xspice/icm/Makefile +++ b/src/xspice/icm/Makefile @@ -95,7 +95,7 @@ dlmain.o: cmextrn.h cminfo.h udnextrn.h udninfo.h -rm -f cmextrn.h cminfo.h objects.inc udnextrn.h udninfo.h \ dlmain.c dlmain.o -rm -rf .deps - + objs: ifspec.o cfunc.o @@ -110,7 +110,7 @@ uobjs-clean: -rm -rf .deps %.o: %.c - @echo '$(COMPILE) $(DEPFLAGS) .deps/$(*F).pp -c $<'; \ + @echo $(COMPILE) $(DEPFLAGS) .deps/$(*F).pp -c $< ; \ $(COMPILE) $(DEPFLAGS) .deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \