From 0b1e658505f4ea74444daf6709688c48f8f9284a Mon Sep 17 00:00:00 2001 From: Marcio Endo Date: Wed, 31 Jan 2024 09:02:24 -0300 Subject: [PATCH] Work 2024-01-31 refactor: remove UnmodifiableList from public methods refactor: remove more UnmodifiableX from public API refactor: remove util.map from git refactor: remove util.set from git refactor: remove util.array from git refactor: move lang.object to another package chore: remove lang.object package refactor(sao): use new objectos.git build: add git and sao to Objectos CI build: add commonmark-java and www to Objectos CI refactor: re-enable the Main class re objectos/objectos#91 $source=f4da2fd560945080c1b6269c77c3814d962b6a80$ --- make/test-run.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/test-run.mk b/make/test-run.mk index f62ea3b..8a67463 100644 --- a/make/test-run.mk +++ b/make/test-run.mk @@ -79,7 +79,7 @@ $(2)test: $$($(1)TEST_RUNTIME_REQS) $$($(1)TEST_RUNTIME_MODULE_PATH): $$($(1)TEST_RUNTIME_DEPS) ifneq ($$($(1)TEST_RUNTIME_DEPS),) - cat $$^ | sort | uniq | paste --delimiter='$$(MODULE_PATH_SEPARATOR)' --serial > $$@ + cat $$^ | sort -u | paste --delimiter='$$(MODULE_PATH_SEPARATOR)' --serial > $$@ else touch $$@ endif