Improved DDV_Controller makefile, fixed a bug. (Hoi Niels!)
This commit is contained in:
parent
cd9ed87802
commit
32880330fd
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ LIBS = -lssl -lcrypto
|
|||
.PHONY: clean default
|
||||
default: cversion $(OUT)
|
||||
.cpp.o:
|
||||
$(CC) $(INCLUDES) $(CCFLAGS) $(LIBS) -c $< -o $@
|
||||
$(CC) $(INCLUDES) $(CCFLAGS) -c $< -o $@
|
||||
$(OUT): $(OBJ)
|
||||
$(CC) -o $(OUT) $(OBJ) $(LIBS)
|
||||
clean:
|
||||
|
|
|
@ -510,7 +510,7 @@
|
|||
$('#config-name').val(settings.settings.config.name);
|
||||
|
||||
$('#config-version').text('version: ' + (settings.settings.config.version || ''));
|
||||
$('#config-time').text('time: ' + new Date(settings.settings.config.time).toUTCString() || '');
|
||||
$('#config-time').text('time: ' + new Date(settings.settings.config.time*1000).toUTCString() || '');
|
||||
|
||||
$('#config-status').text('status: ' + (settings.settings.config.status || ''));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue