+2001-07-06 KITAGAWA Takurou <i30x1641@ip.media.kyoto-u.ac.jp>
+
+ * lisp/Makefile.in (clever): Use `if test... then' instead of
+ `test... &&'.
+
2001-07-06 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/Makefile.in (clever): Change the quoting style for the
GNUS_PRODUCT_NAME = @GNUS_PRODUCT_NAME@
EXPORTING_FILES = $(EMACS_COMP) -f dgnushack-exporting-files 2>/dev/null
+# We should never use `COMMAND && ...' form, use `if COMMAND then ...'
+# form instead. Because, as far as we know, FreeBSD's native make will
+# be discontinued if COMMAND returns a non-zero exit status.
+
all total: clean-some gnus-load.elc
$(EMACS_COMP) -f dgnushack-compile
if test `$(EMACS) -batch -q -no-site-file \
-eval '(prin1 (featurep (quote xemacs)))' \
2>/dev/null` = t; then \
- test ! -f $(srcdir)/gnus-xmas.elc && RM_ELC=t; \
+ if test ! -f $(srcdir)/gnus-xmas.elc; then RM_ELC=t; fi; \
else \
- test -f $(srcdir)/gnus-xmas.elc && RM_ELC=t; \
+ if test -f $(srcdir)/gnus-xmas.elc; then RM_ELC=t; fi; \
fi; \
if test $$RM_ELC = t; then \
echo " => maybe yes;" \