Skip to content

Commit

Permalink
Use src/json.app.src instead of ebin/json.app
Browse files Browse the repository at this point in the history
This was requested to allow rebar to use eep0018 as a depdency.
  • Loading branch information
davisp committed Feb 15, 2011
1 parent a31b393 commit b45082e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
*.o
*.so
*.beam

ebin/*
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -3,6 +3,7 @@
erlc -o test/ $<

all:
@mkdir -p ebin
./rebar compile

check: test/etap.beam test/util.beam
Expand Down
2 changes: 1 addition & 1 deletion ebin/json.app → src/json.app.src
@@ -1,7 +1,7 @@
{application, json, [
{description, "JSON Nifs"},
{vsn, "0.0.1"},
{modules, [json, json_fuzz]},
{modules, []},
{registered, []},
{applications, [kernel, stdlib]},
{env, []}
Expand Down

0 comments on commit b45082e

Please sign in to comment.