Skip to content

Commit

Permalink
removed dummy tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
Kakadu committed Mar 16, 2012
1 parent 3b0e2e8 commit c9d6eed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/global.ml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@ let create_dirs =
) in fun () -> Lazy.force create_dirs_lazy

let expand_vars x =
Printf.printf "inside expand_vars `%s`\n" x;
Str.global_substitute
(Str.regexp "\\$[A-Za-z_]+")
(fun m ->
let var = Str.matched_string m in
Printf.printf "var = %s\n" var;
match var with
| "$base_dir" -> base_dir
| "$recipe_dir" -> recipe_dir
Expand Down
2 changes: 1 addition & 1 deletion src/install.ml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let makefile : install_type = object
method install ~source_dir ~build_cmd ~install_cmd ~flags ~patches = begin
G.create_dirs ();
Env.write_env ();
Log.info "getenv ~default:\"make\" \"MAKE\" is `%s`\n" (getenv ~default:"make" "MAKE");

Log.info "Applying patches";
WithRes.bindres WithRes.with_sys_chdir source_dir & fun _old_path ->
List.iter patches ~f:(fun patch ->
Expand Down

0 comments on commit c9d6eed

Please sign in to comment.