dos2unix: Remove after move to core

Its in OE-Core now

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj
2018-08-21 10:37:31 -07:00
parent 4edac5919f
commit a96b365076
2 changed files with 0 additions and 48 deletions
-14
View File
@@ -1,14 +0,0 @@
# Class for use to convert all CRLF line terminators to LF
# provided that some projects are being developed/maintained
# on Windows so they have different line terminators(CRLF) vs
# on Linux(LF), which can cause annoying patching errors during
# git push/checkout processes.
do_convert_crlf_to_lf[depends] += "dos2unix-native:do_populate_sysroot"
# Convert CRLF line terminators to LF
do_convert_crlf_to_lf () {
find ${S} -type f -exec dos2unix {} \;
}
addtask convert_crlf_to_lf after do_unpack before do_patch