From c22be4689d0dd54da8a13b80694c377e3070d515 Mon Sep 17 00:00:00 2001 From: h_vogt Date: Sun, 22 Feb 2009 12:41:18 +0000 Subject: [PATCH] *.cm for CYGWIN need to be made executable (755 instead of 644) --- ChangeLog | 4 ++++ src/xspice/icm/Makefile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4b2a111c9..e50af7092 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-02-22 Holger Vogt + * xspice/icm/makefile: *.cm for CYGWIN need to be made executable + (755 instead of 644) + 2009-02-22 Dietmar Warning * devices/adms/mextram: Update to release version 504.7 now with selfheating as a 5 terminal version diff --git a/src/xspice/icm/Makefile b/src/xspice/icm/Makefile index a849cb6c2..2b2cbbaa3 100644 --- a/src/xspice/icm/Makefile +++ b/src/xspice/icm/Makefile @@ -20,6 +20,10 @@ COMPILE = $(CC) $(INCLUDES) $(CFLAGS) INSTALL_DATA = ${INSTALL} -m 644 +ifeq ($(ISCYGWIN), 1) + INSTALL_DATA = ${INSTALL} -m 755 +endif + all: @for x in $(CMDIRS) ; do \ ( cd $$x && $(UPMAKE) $$x-mods ) \