[intel/repo] update patch command

so .rej files for already applied patch aren't made
This commit is contained in:
Sławomir Nizio 2012-04-24 16:42:51 +02:00
parent c175d6e905
commit 89c95b14a0
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ cat << EOF >> "${tmp_path}"
enabled_not_satisfied = enabled_use - pkguse
EOF
( cd / && patch -p1 < "${tmp_path}" 2>&1 > /dev/null ) # ignore any outcome
( cd / && patch -N -r - -p1 < "${tmp_path}" 2>&1 > /dev/null ) # ignore any outcome
rm -f "${tmp_path}"
exit 0

View File

@ -76,7 +76,7 @@ cat << EOF >> "${tmp_path}"
enabled_not_satisfied = enabled_use - pkguse
EOF
( cd / && patch -p1 < "${tmp_path}" 2>&1 > /dev/null ) # ignore any outcome
( cd / && patch -N -r - -p1 < "${tmp_path}" 2>&1 > /dev/null ) # ignore any outcome
rm -f "${tmp_path}"
exit 0