mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
apply_patches: Sort patch list before applying
The apply_patches script wasn't sorting the list of patches in the "patches" directory before applying them. This left the list in an indeterminate order. In most cases, the list is actually sorted but rarely, they can be out of order and cause dependent patches to fail to apply. We now sort the list but the "sort" program wasn't in the configure scripts so we needed to add that and regenerate the scripts as well. Resolves: #193
This commit is contained in:
committed by
AsteriskCI2
parent
452e0d7258
commit
6dc6d11671
@@ -285,6 +285,9 @@ AC_PATH_PROG([TAR], [tar], :)
|
||||
AC_PATH_PROG([PATCH], [patch], :)
|
||||
AC_PATH_PROG([SED], [sed], :)
|
||||
AC_PATH_PROG([NM], [nm], :)
|
||||
AC_PATH_PROG([REALPATH], [realpath], :)
|
||||
AC_PATH_PROG([SORT], [sort], :)
|
||||
|
||||
|
||||
DOWNLOAD=":"
|
||||
DOWNLOAD_TO_STDOUT=
|
||||
|
Reference in New Issue
Block a user