Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-12-15 14:47:16 +0300
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-12-15 14:47:16 +0300
commit9a14bd04f879499df1cf3d88f6bf9a1257380768 (patch)
tree409f63f4f4460302559cfdd3ff507f61a554eed9 /coreutils/head.c
parent73bffd4d964538e7c60bff2b609fb64c53f80c35 (diff)
- Stephane Billiart writes:
Fix the compilation of head and tail. thanks!
Diffstat (limited to 'coreutils/head.c')
-rw-r--r--coreutils/head.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/head.c b/coreutils/head.c
index 628dae5ea..eb0dcf212 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -85,7 +85,7 @@ int head_main(int argc, char **argv)
#endif
case 'n':
p = optarg;
-#if ENABLE_FEATURE_FANCY_HEAD
+#if defined CONFIG_FEATURE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
GET_COUNT:
#endif
count = bb_xgetularg10(p);