diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-10-08 18:49:45 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-10-08 18:49:45 +0000 |
commit | a16011dfea4b09dab76fb9a09885cfc91c67c85b (patch) | |
tree | cda1148d99465a80bc7ef5f4256c31c34b43bea6 /util-linux/mount.c | |
parent | 68760801d6de36842614248a1dc67ff428a5128b (diff) | |
download | busybox-w32-a16011dfea4b09dab76fb9a09885cfc91c67c85b.tar.gz busybox-w32-a16011dfea4b09dab76fb9a09885cfc91c67c85b.tar.bz2 busybox-w32-a16011dfea4b09dab76fb9a09885cfc91c67c85b.zip |
Rename CONFIG_NFSMOUNT to CONFIG_FEATURE_MOUNT_NFS so allbaseconfig can
find it (and tweak defconfig to catch up).
git-svn-id: svn://busybox.net/trunk/busybox@11812 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | util-linux/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 05f25a70d..15b2b192f 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -37,7 +37,7 @@ | |||
37 | 37 | ||
38 | /* This is just a warning of a common mistake. Possibly this should be a | 38 | /* This is just a warning of a common mistake. Possibly this should be a |
39 | * uclibc faq entry rather than in busybox... */ | 39 | * uclibc faq entry rather than in busybox... */ |
40 | #if ENABLE_NFSMOUNT && defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__) | 40 | #if ENABLE_FEATURE_MOUNT_NFS && defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__) |
41 | #error "You need to build uClibc with UCLIBC_HAS_RPC for busybox mount with NFS support to compile." | 41 | #error "You need to build uClibc with UCLIBC_HAS_RPC for busybox mount with NFS support to compile." |
42 | #endif | 42 | #endif |
43 | 43 | ||
@@ -278,7 +278,7 @@ singlemount: | |||
278 | 278 | ||
279 | // Might this be an NFS filesystem? | 279 | // Might this be an NFS filesystem? |
280 | 280 | ||
281 | if(ENABLE_NFSMOUNT && (!fsType || !strcmp(fsType,"nfs")) && | 281 | if(ENABLE_FEATURE_MOUNT_NFS && (!fsType || !strcmp(fsType,"nfs")) && |
282 | strchr(blockDevice, ':') != NULL) | 282 | strchr(blockDevice, ':') != NULL) |
283 | { | 283 | { |
284 | if(nfsmount(blockDevice, directory, &flags, &string_flags, 1)) | 284 | if(nfsmount(blockDevice, directory, &flags, &string_flags, 1)) |