Skip to content

Commit

Permalink
removed relative file paths in includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Dionne committed May 31, 2010
1 parent ae6c413 commit fefcb3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,7 +1,7 @@
.SUFFIXES: .erl .beam

.erl.beam:
erlc -I include -o ebin -W +debug_info -DTEST $<
erlc -I include -I ../couchdb/src/couchdb -o ebin -W +debug_info -DTEST $<

MODS = src/ontylog/dag\
src/ontylog/bitstore\
Expand Down
2 changes: 1 addition & 1 deletion src/ontylog/bitstore.erl
Expand Up @@ -50,7 +50,7 @@
path_exists/2,
close_dag/1]).

-include("../couchdb/src/couchdb/couch_db.hrl").
-include("couch_db.hrl").
-define(ADMIN_USER_CTX, {user_ctx, #user_ctx{roles=[<<"_admin">>]}}).

-record(state, {dbs}).
Expand Down
2 changes: 1 addition & 1 deletion src/search/indexer_couchdb_crawler.erl
Expand Up @@ -45,7 +45,7 @@
delete_indices/3
]).

-include("../couchdb/src/couchdb/couch_db.hrl").
-include("couch_db.hrl").
-include("bitstore.hrl").

-define(BATCH_SIZE, 1000).
Expand Down

0 comments on commit fefcb3d

Please sign in to comment.