diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-03-03 00:48:53 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-03-03 00:48:53 -0500 |
commit | 93b51819cf42728654769462130c4b7d50e9b67a (patch) | |
tree | df246700f304dc2774e3101aa41f6ad254995061 | |
parent | 507f6ea6d2de1bd8298c396edaa600a41bc5ae6e (diff) | |
download | busybox-w32-93b51819cf42728654769462130c4b7d50e9b67a.tar.gz busybox-w32-93b51819cf42728654769462130c4b7d50e9b67a.tar.bz2 busybox-w32-93b51819cf42728654769462130c4b7d50e9b67a.zip |
archival: note implicit dependencies between lzop & bbunzip
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | archival/bbunzip.c | 1 | ||||
-rw-r--r-- | archival/lzop.c | 1 |
2 files changed, 2 insertions, 0 deletions
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 @@ | |||
7 | #include "libbb.h" | 7 | #include "libbb.h" |
8 | #include "bb_archive.h" | 8 | #include "bb_archive.h" |
9 | 9 | ||
10 | /* Note: must be kept in sync with archival/lzop.c */ | ||
10 | enum { | 11 | enum { |
11 | OPT_STDOUT = 1 << 0, | 12 | OPT_STDOUT = 1 << 0, |
12 | OPT_FORCE = 1 << 1, | 13 | 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 { | |||
438 | 438 | ||
439 | #define OPTION_STRING "cfvqdt123456789CF" | 439 | #define OPTION_STRING "cfvqdt123456789CF" |
440 | 440 | ||
441 | /* Note: must be kept in sync with archival/bbunzip.c */ | ||
441 | enum { | 442 | enum { |
442 | OPT_STDOUT = (1 << 0), | 443 | OPT_STDOUT = (1 << 0), |
443 | OPT_FORCE = (1 << 1), | 444 | OPT_FORCE = (1 << 1), |