* Makefile.in (.SUFFIX): Spell correctly, as ...
(.SUFFIXES): ... this. Fixes bug where `make foo' (where foo is a bare module name without `.mod', e.g. `test') tried to invoke a Modula-2 compiler.
This commit is contained in:
parent
1a1f1e6794
commit
19563c25c1
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2010-07-13 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
|
* Makefile.in (.SUFFIX): Spell correctly, as ...
|
||||||
|
(.SUFFIXES): ... this. Fixes bug where `make foo' (where foo is a
|
||||||
|
bare module name without `.mod', e.g. `test') tried to invoke a
|
||||||
|
Modula-2 compiler.
|
||||||
|
|
||||||
2010-07-13 Colin Watson <cjwatson@ubuntu.com>
|
2010-07-13 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
* README: Point to the Info manual.
|
* README: Point to the Info manual.
|
||||||
|
|
|
@ -524,8 +524,8 @@ check: all $(UNIT_TESTS) $(FUNCTIONAL_TESTS) $(SCRIPTED_TESTS)
|
||||||
$(builddir)/$$file; \
|
$(builddir)/$$file; \
|
||||||
done
|
done
|
||||||
|
|
||||||
.SUFFIX:
|
.SUFFIXES:
|
||||||
.SUFFIX: .c .o .S .d
|
.SUFFIXES: .c .o .S .d
|
||||||
|
|
||||||
# Regenerate configure and Makefile automatically.
|
# Regenerate configure and Makefile automatically.
|
||||||
$(srcdir)/aclocal.m4: configure.ac acinclude.m4
|
$(srcdir)/aclocal.m4: configure.ac acinclude.m4
|
||||||
|
|
Loading…
Reference in a new issue