diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /ipkg/ipkg-0.99.130 | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'ipkg/ipkg-0.99.130')
-rw-r--r-- | ipkg/ipkg-0.99.130/terse.patch | 27 | ||||
-rw-r--r-- | ipkg/ipkg-0.99.130/uninclude-replace.patch | 10 |
2 files changed, 37 insertions, 0 deletions
diff --git a/ipkg/ipkg-0.99.130/terse.patch b/ipkg/ipkg-0.99.130/terse.patch index e69de29bb2..9a07df5df3 100644 --- a/ipkg/ipkg-0.99.130/terse.patch +++ b/ipkg/ipkg-0.99.130/terse.patch @@ -0,0 +1,27 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- C/ipkg_cmd.c~terse ++++ C/ipkg_cmd.c +@@ -119,8 +119,6 @@ + " writing status file\n"); + ipkg_conf_write_status_files(conf); + pkg_write_changed_filelists(conf); +- } else { +- ipkg_message(conf, IPKG_NOTICE, "Nothing to be done\n"); + } + } + +@@ -148,9 +146,7 @@ + int result; + p_userdata = userdata; + result = (cmd->fun)(conf, argc, argv); +- if ( result == 0 ) { +- ipkg_message(conf, IPKG_NOTICE, "Successfully terminated.\n"); +- } else { ++ if ( result != 0 ) { + ipkg_message(conf, IPKG_NOTICE, "An error ocurred, return value: %d.\n", result); + } + diff --git a/ipkg/ipkg-0.99.130/uninclude-replace.patch b/ipkg/ipkg-0.99.130/uninclude-replace.patch index e69de29bb2..a3ed2201fd 100644 --- a/ipkg/ipkg-0.99.130/uninclude-replace.patch +++ b/ipkg/ipkg-0.99.130/uninclude-replace.patch @@ -0,0 +1,10 @@ +--- C/includes.h 2003-03-28 19:36:22.000000000 +0000 ++++ C/includes.h 2004-07-28 03:41:11.000000000 +0100 +@@ -48,6 +48,6 @@ + # include <unistd.h> + #endif + +-#include "replace/replace.h" ++//#include "replace/replace.h" + + #endif |