mirror of
https://github.com/hamishcoleman/thinkpad-ec
synced 2024-11-09 19:11:05 +00:00
2fdb758f6b
This is a quick fix to address two issues: * Firstly, if the mec-tools mec_encrypt binary cannot be compiled, gcc still produces an output file - it is a non executable "precompiled header" file. I assume there is a bug in the mec-tools makefile logic, which I will look for later. * Secondly, because I am using stdout for file generation, many commands will still produce an output file even when they fail. This output file then looks "good" to the make command, which will carry on to do the next step. Since fixing the failed commands in my Makefile makes things more robust in general, it also avoids the compile issue with the mec-tools.
17 lines
219 B
Plaintext
17 lines
219 B
Plaintext
|
|
# ignore the files that we do not have clear permission to distribute
|
|
*.iso
|
|
*.iso.orig
|
|
*.img
|
|
*.img.orig
|
|
*.img.enc
|
|
*.img.enc.orig
|
|
*.FL2
|
|
*.FL2.orig
|
|
|
|
# ignore generated files
|
|
*.bat
|
|
|
|
# Temp are (should be) just junk
|
|
*.tmp
|