diff options
author | Justin Vreeland <vreeland.justin@gmail.com> | 2016-04-21 08:30:10 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-04-21 21:34:18 -0400 |
commit | f10fbff6758dfcfbeeeb224f8ab02fa107aae5f6 (patch) | |
tree | d090893b0ac03918ddc9e2c7765901a997c1f7f4 /altoslib/Makefile.am | |
parent | c989237366ada094cdc817f50b7f58bbcf5b377a (diff) |
Fix java class differing only by case
OSX and Windows cannot handle files with names differing only by
case. When these files are present in either there's a constant
unfixable change viewable in git status and git diff.
Since this code can be run and compiled on both platforms
names different only by case should be avoided.
Signed-off-by: Justin Vreeland <vreeland.justin@gmail.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/Makefile.am')
-rw-r--r-- | altoslib/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altoslib/Makefile.am b/altoslib/Makefile.am index d1f8f265..e5d8c964 100644 --- a/altoslib/Makefile.am +++ b/altoslib/Makefile.am @@ -39,7 +39,7 @@ altoslib_JAVA = \ AltosEepromDownload.java \ AltosEepromFile.java \ AltosEepromTM.java \ - AltosEepromTm.java \ + AltosEepromTMini.java \ AltosEepromHeader.java \ AltosEepromIterable.java \ AltosEepromList.java \ |