This is not needed to build modules
Todas as verificações foram bem sucedidas
The build was successful.

Esse commit está contido em:
Rafal Kupiec 2018-08-10 08:44:09 +02:00
commit bfbe97255c
Assinado por: belliash
ID da chave GPG: 4E829243E0CFE6B4

Ver arquivo

@ -11,7 +11,7 @@ RCFLAGS = -O3 -s
LDFLAGS =
# Destination directory
DESTDIR ?= $(realpath .)/binary
DESTDIR ?= $(realpath .)/binary/
##############################################
### Do not modify anything below this line ###
@ -142,7 +142,7 @@ $(MODULE):
$(eval MODULE_OBJS := $(addprefix $(BUILD_DIR)/,$(MODULE_MAKE)))
$(eval MODULE_PROG := $(MODULE_DIRS)$(LIBSUFFIX))
$(MAKE) $(MODULE_OBJS)
$(CC) -o $(BUILD_DIR)/$(MODULE_PROG) $(LDFLAGS) $(LIBFLAGS) -shared $(MODULE_OBJS)
$(CC) -o $(BUILD_DIR)/$(MODULE_PROG) $(LDFLAGS) -shared $(MODULE_OBJS)
$(SAPI):
$(eval SAPI_DIRS := $@)