From: Mike Frysinger Date: Sun, 3 Mar 2013 05:48:53 +0000 (-0500) Subject: archival: note implicit dependencies between lzop & bbunzip X-Git-Tag: 1_22_0~249 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=93b51819cf42728654769462130c4b7d50e9b67a;p=oweals%2Fbusybox.git archival: note implicit dependencies between lzop & bbunzip Signed-off-by: Mike Frysinger --- diff --git a/archival/bbunzip.c b/archival/bbunzip.c index fe3b29b78..b332eecd6 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 f5e06b54b..9b42e5fd3 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),