1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sock_dns: move module to directory named like module

This commit is contained in:
Martine Lenders 2021-07-21 13:55:17 +02:00
parent 775d6095bc
commit bf764fd700
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80
3 changed files with 1 additions and 2 deletions

View File

@ -132,7 +132,7 @@ ifneq (,$(filter sock_async_event,$(USEMODULE)))
DIRS += net/sock/async/event
endif
ifneq (,$(filter sock_dns,$(USEMODULE)))
DIRS += net/application_layer/dns
DIRS += net/application_layer/sock_dns
endif
ifneq (,$(filter sock_util,$(USEMODULE)))
DIRS += net/sock

View File

@ -1,2 +1 @@
MODULE=sock_dns
include $(RIOTBASE)/Makefile.base