Skip to content

Commit

Permalink
use include_lib instead of include for ibrowse
Browse files Browse the repository at this point in the history
so that rebar stops complaining about missing ibrowse.hrl
  • Loading branch information
talklittle committed Sep 22, 2011
1 parent 93e4f94 commit 10fc550
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/openid_http.erl
@@ -1,5 +1,5 @@
-module(openid_http).
-include("deps/ibrowse/src/ibrowse.hrl").
-include_lib("ibrowse/src/ibrowse.hrl").
-export([get/1, post/3]).

-define(MAX_REDIRECTS, 5). %% too generous?
Expand Down
2 changes: 1 addition & 1 deletion src/openid_utils.erl
Expand Up @@ -13,7 +13,7 @@
-export([normalize_id/1, normalize_http/1]).

-include("openid.hrl").
-include("deps/ibrowse/src/ibrowse.hrl").
-include_lib("ibrowse/src/ibrowse.hrl").

get_tags(Content, Tag) ->
find_tags(Content, {[], Tag, none, none}).
Expand Down

0 comments on commit 10fc550

Please sign in to comment.