summaryrefslogtreecommitdiff
path: root/apps/netutils
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-15 13:52:39 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-15 13:52:39 -0600
commit3e32e050072dcda6790295188d3bf7ba11e477f6 (patch)
tree0850aa6f9df6b95493be9e67bde721f3c856ea2f /apps/netutils
parent24a33a43436bcc8430c5c1e6707dedc8c2531171 (diff)
downloadnuttx-3e32e050072dcda6790295188d3bf7ba11e477f6.tar.gz
nuttx-3e32e050072dcda6790295188d3bf7ba11e477f6.tar.bz2
nuttx-3e32e050072dcda6790295188d3bf7ba11e477f6.zip
Network: Various fixes for clean compile with both Ethernet and SLIP
Diffstat (limited to 'apps/netutils')
-rw-r--r--apps/netutils/netlib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/netutils/netlib/Makefile b/apps/netutils/netlib/Makefile
index 8de89a857..9710702ba 100644
--- a/apps/netutils/netlib/Makefile
+++ b/apps/netutils/netlib/Makefile
@@ -52,7 +52,7 @@ endif
# No MAC address support for SLIP (Ethernet only)
-ifneq ($(CONFIG_NET_SLIP),y)
+ifeq ($(CONFIG_NET_ETHERNET),y)
CSRCS += netlib_setmacaddr.c netlib_getmacaddr.c
endif