diff options
author | Masamichi Hosoda <trueroad@sea.plala.or.jp> | 2015-04-28 14:29:52 +0100 |
---|---|---|
committer | James Lowe <pkx166h@gmail.com> | 2015-04-28 15:02:06 +0100 |
commit | 8dd74d9902782edbd3a1f0dddcaeca29759b7be1 (patch) | |
tree | eeeba49ada519f1337204f5b1d6920710fc5e642 /input | |
parent | 3ca81140f81875a399777cfffe14cdd32c74f7c8 (diff) |
Rename makefile variable TMP
Issue 4353
Rename makefile variable TMP
Windows (cygwin and mingw)
system uses environment
variable TMP for a special
purpose. It can not be used
for other purpose like
makefile variable.
Diffstat (limited to 'input')
-rw-r--r-- | input/regression/abc2ly/GNUmakefile | 4 | ||||
-rw-r--r-- | input/regression/midi/GNUmakefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/input/regression/abc2ly/GNUmakefile b/input/regression/abc2ly/GNUmakefile index 7356f99cb3..438deba2c8 100644 --- a/input/regression/abc2ly/GNUmakefile +++ b/input/regression/abc2ly/GNUmakefile @@ -5,8 +5,8 @@ LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc abc TEXI2HTML_FLAGS += --nomenu -TMP = $(sort $(ABC_FILES) $(TEXINFO_SOURCES) ) -COLLATED_FILES = ${TMP:%.abc=$(outdir)/%.ly} +TMP_FILES = $(sort $(ABC_FILES) $(TEXINFO_SOURCES) ) +COLLATED_FILES = ${TMP_FILES:%.abc=$(outdir)/%.ly} include $(depth)/make/stepmake.make diff --git a/input/regression/midi/GNUmakefile b/input/regression/midi/GNUmakefile index 682bf82db5..d6be6f62df 100644 --- a/input/regression/midi/GNUmakefile +++ b/input/regression/midi/GNUmakefile @@ -5,8 +5,8 @@ LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc midi TEXI2HTML_FLAGS += --nomenu -TMP = $(sort $(LY_FILES) $(TEXINFO_SOURCES) ) -COLLATED_FILES = ${TMP:%.ly=$(outdir)/%-midi.ly} +TMP_FILES = $(sort $(LY_FILES) $(TEXINFO_SOURCES) ) +COLLATED_FILES = ${TMP_FILES:%.ly=$(outdir)/%-midi.ly} include $(depth)/make/stepmake.make |