diff options
-rw-r--r-- | core/deps.mk | 4 | ||||
-rw-r--r-- | packages.v1.tsv | 1 | ||||
-rw-r--r-- | packages.v1.txt | 1 | ||||
-rw-r--r-- | packages.v2.tsv | 1 |
4 files changed, 2 insertions, 5 deletions
diff --git a/core/deps.mk b/core/deps.mk index c0f7887..a69b153 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -289,8 +289,8 @@ define dep_autopatch_rebar.erl case filelib:is_dir("$(DEPS_DIR)/$(1)/c_src") of false -> ok; true -> - Sources = [[" ./c_src/", S] || S <- filelib:wildcard("*.{c,C,cc,cpp}", "$(DEPS_DIR)/$(1)/c_src")], - Write(io_lib:format("SOURCES := ~s\n", [Sources])) + Sources = filelib:fold_files("$(DEPS_DIR)/$(1)/c_src", ".*\\\\.(c|C|cc|cpp)$$$$", true, fun(F, Acc) -> [F|Acc] end, []), + Write(io_lib:format("SOURCES :=~s\n", [[[" ", S] || S <- Sources]])) end end(), Write("\n\nrebar_dep: pre-deps deps pre-app app\n"), diff --git a/packages.v1.tsv b/packages.v1.tsv index 8e12398..2910d6e 100644 --- a/packages.v1.tsv +++ b/packages.v1.tsv @@ -115,7 +115,6 @@ ptrackerl https://github.com/inaka/ptrackerl https://github.com/inaka/ptrackerl push_service https://github.com/hairyhum/push_service https://github.com/hairyhum/push_service Push service qdate https://github.com/choptastic/qdate https://github.com/choptastic/qdate Date, time, and timezone parsing, formatting, and conversion for Erlang. rack https://github.com/erlyvideo/rack https://github.com/erlyvideo/rack Rack handler for erlang -rafter https://github.com/andrewjstone/rafter https://github.com/andrewjstone/rafter An Erlang library application which implements the Raft consensus protocol ranch https://github.com/ninenines/ranch http://ninenines.eu Socket acceptor pool for TCP protocols. rebar https://github.com/rebar/rebar3 http://www.rebar3.org Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases. rec2json https://github.com/lordnull/rec2json https://github.com/lordnull/rec2json Compile erlang record definitions into modules to convert them to/from json easily. diff --git a/packages.v1.txt b/packages.v1.txt index 8e12398..2910d6e 100644 --- a/packages.v1.txt +++ b/packages.v1.txt @@ -115,7 +115,6 @@ ptrackerl https://github.com/inaka/ptrackerl https://github.com/inaka/ptrackerl push_service https://github.com/hairyhum/push_service https://github.com/hairyhum/push_service Push service qdate https://github.com/choptastic/qdate https://github.com/choptastic/qdate Date, time, and timezone parsing, formatting, and conversion for Erlang. rack https://github.com/erlyvideo/rack https://github.com/erlyvideo/rack Rack handler for erlang -rafter https://github.com/andrewjstone/rafter https://github.com/andrewjstone/rafter An Erlang library application which implements the Raft consensus protocol ranch https://github.com/ninenines/ranch http://ninenines.eu Socket acceptor pool for TCP protocols. rebar https://github.com/rebar/rebar3 http://www.rebar3.org Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases. rec2json https://github.com/lordnull/rec2json https://github.com/lordnull/rec2json Compile erlang record definitions into modules to convert them to/from json easily. diff --git a/packages.v2.tsv b/packages.v2.tsv index 6115315..aa3b903 100644 --- a/packages.v2.tsv +++ b/packages.v2.tsv @@ -115,7 +115,6 @@ ptrackerl git https://github.com/inaka/ptrackerl master https://github.com/inaka push_service git https://github.com/hairyhum/push_service master https://github.com/hairyhum/push_service Push service qdate git https://github.com/choptastic/qdate 0.4.0 https://github.com/choptastic/qdate Date, time, and timezone parsing, formatting, and conversion for Erlang. rack git https://github.com/erlyvideo/rack master https://github.com/erlyvideo/rack Rack handler for erlang -rafter git https://github.com/andrewjstone/rafter master https://github.com/andrewjstone/rafter An Erlang library application which implements the Raft consensus protocol ranch git https://github.com/ninenines/ranch 1.1.0 http://ninenines.eu Socket acceptor pool for TCP protocols. rebar git https://github.com/rebar/rebar3 master http://www.rebar3.org Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases. rec2json git https://github.com/lordnull/rec2json master https://github.com/lordnull/rec2json Compile erlang record definitions into modules to convert them to/from json easily. |