From 63845646aff63f8b62ed1ff3ee10ede84510e7b7 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Sat, 6 Mar 2010 10:37:11 +0100 Subject: [PATCH] Lets not generate the ingres code automatically when the .sc or .sh files changes as it seems these files get outdated on some systems and then this rule kicks in on systems that don't have the esqlcc ingres compiler installed. --- bacula/src/cats/Makefile.in | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/bacula/src/cats/Makefile.in b/bacula/src/cats/Makefile.in index f12ea35950..6101743f66 100644 --- a/bacula/src/cats/Makefile.in +++ b/bacula/src/cats/Makefile.in @@ -56,15 +56,11 @@ all: Makefile libbacsql$(DEFAULT_ARCHIVE_TYPE) @echo "==== Make of sqllib is good ====" @echo " " -myingres.c: myingres.sc - @echo "Generating $@ from $<" - $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=c $< - -myingres.h: myingres.sh - @echo "Generating $@ from $<" - $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=h $< - -esql: myingres.c myingres.h +esql: + @echo "Generating myingres.c from myingres.sc" + $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=c myingres.sc + @echo "Generating myingres.h from myingres.sh" + $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=h myingres.sh libbacsql.a: $(LIBBACSQL_OBJS) @echo "Making $@ ..." -- 2.39.5