[git commit] archival: note implicit dependencies between lzop & bbunzip

Mike Frysinger vapier at gentoo.org
Sun Mar 3 05:48:53 UTC 2013


commit: http://git.busybox.net/busybox/commit/?id=93b51819cf42728654769462130c4b7d50e9b67a
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 archival/bbunzip.c |    1 +
 archival/lzop.c    |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/archival/bbunzip.c b/archival/bbunzip.c
index fe3b29b..b332eec 100644
--- a/archival/bbunzip.c
+++ b/archival/bbunzip.c
@@ -7,6 +7,7 @@
 #include "libbb.h"
 #include "bb_archive.h"
 
+/* Note: must be kept in sync with archival/lzop.c */
 enum {
 	OPT_STDOUT     = 1 << 0,
 	OPT_FORCE      = 1 << 1,
diff --git a/archival/lzop.c b/archival/lzop.c
index f5e06b5..9b42e5f 100644
--- a/archival/lzop.c
+++ b/archival/lzop.c
@@ -438,6 +438,7 @@ struct globals {
 
 #define OPTION_STRING "cfvqdt123456789CF"
 
+/* Note: must be kept in sync with archival/bbunzip.c */
 enum {
 	OPT_STDOUT      = (1 << 0),
 	OPT_FORCE       = (1 << 1),


More information about the busybox-cvs mailing list