diff options
| author | Jonathan Bauer | 2012-11-06 16:46:26 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2012-11-06 16:46:26 +0100 |
| commit | ed57447777c5ffbb78d78759aa033a2bd236257d (patch) | |
| tree | 706d152f952bdbd32fda3ff6a940d0b5a7edf3c3 | |
| parent | ld-linux hack & systemd.conf (diff) | |
| download | tm-scripts-ed57447777c5ffbb78d78759aa033a2bd236257d.tar.gz tm-scripts-ed57447777c5ffbb78d78759aa033a2bd236257d.tar.xz tm-scripts-ed57447777c5ffbb78d78759aa033a2bd236257d.zip | |
fix for missing files when find finds 2 or more matches
| -rwxr-xr-x | remote/setup-tools.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remote/setup-tools.sh b/remote/setup-tools.sh index c716a7a2..54713683 100755 --- a/remote/setup-tools.sh +++ b/remote/setup-tools.sh @@ -98,8 +98,9 @@ copyfileswithdependencies () for f in $(find . -name $FILENAME) do [ $(file $f |grep -c ELF) -eq 0 ] && FILE=$f - done echo $FILE >> $COPYFILES_LIST + done + #echo $FILE >> $COPYFILES_LIST done #copy to initramfsdir |
