Move the || true bit of invoking tclsh to the Makefile, since
missing would otherwise not pass the file name to tclsh.
Thanks to des for spotting this.
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3360
d4fa192b-c00b-0410-8231-
f00ffab90ce4
AM_MISSING_HAS_RUN
AC_CHECK_PROGS(TCLSH, [tclsh tclsh8.4 tclsh8.5], :)
if test "$TCLSH" = :; then
- TCLSH="${am_missing_run}tclsh || true"
+ TCLSH="${am_missing_run}tclsh"
fi
# Solaris defines SO_{RCV,SND}TIMEO, but does not implement them.
vcc_gen_fixed_token.tcl
$(srcdir)/vcc_obj.c: $(srcdir)/vcc_gen_obj.tcl
- cd $(srcdir) && @TCLSH@ vcc_gen_obj.tcl
+ cd $(srcdir) && @TCLSH@ vcc_gen_obj.tcl || true
$(srcdir)/vcc_fixed_token.c: $(srcdir)/vcc_gen_fixed_token.tcl $(top_srcdir)/include/vcl.h $(top_srcdir)/include/vrt.h $(top_srcdir)/include/vrt_obj.h
- cd $(srcdir) && @TCLSH@ vcc_gen_fixed_token.tcl
+ cd $(srcdir) && @TCLSH@ vcc_gen_fixed_token.tcl || true
$(srcdir)/vcc_token_defs.h: $(srcdir)/vcc_gen_fixed_token.tcl $(top_srcdir)/include/vcl.h $(top_srcdir)/include/vrt.h $(top_srcdir)/include/vrt_obj.h
- cd $(srcdir) && @TCLSH@ vcc_gen_fixed_token.tcl
+ cd $(srcdir) && @TCLSH@ vcc_gen_fixed_token.tcl || true