The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
19 lines
304 B
Diff
19 lines
304 B
Diff
--- a/auto/endianness
|
|
+++ b/auto/endianness
|
|
@@ -12,6 +12,16 @@ checking for system byte ordering
|
|
|
|
END
|
|
|
|
+if [ "${CONFIG_BIG_ENDIAN}" != "y" ]; then
|
|
+ echo " little endian"
|
|
+ have=NGX_HAVE_LITTLE_ENDIAN . auto/have
|
|
+else
|
|
+ echo " big endian"
|
|
+fi
|
|
+
|
|
+return
|
|
+
|
|
+
|
|
|
|
cat << END > $NGX_AUTOTEST.c
|
|
|