diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-15 11:47:16 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-15 11:47:16 +0000 |
commit | 9a14bd04f879499df1cf3d88f6bf9a1257380768 (patch) | |
tree | 409f63f4f4460302559cfdd3ff507f61a554eed9 /coreutils/head.c | |
parent | 73bffd4d964538e7c60bff2b609fb64c53f80c35 (diff) |
- Stephane Billiart writes:
Fix the compilation of head and tail.
thanks!
Diffstat (limited to 'coreutils/head.c')
-rw-r--r-- | coreutils/head.c | 2 |
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); |