Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Remove sed step since no longer necessary, and OS X's sed does funny …
Browse files Browse the repository at this point in the history
…things with file endings that cause noise in gaia diffs. r=asuth
  • Loading branch information
jrburke committed Mar 22, 2013
1 parent 35327bb commit efc499f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Makefile
Expand Up @@ -9,8 +9,6 @@ VOLO=./scripts/volo
# transform it, then copy it to the destination dir. # transform it, then copy it to the destination dir.
NODE_PKGS := addressparser mailparser mailcomposer mimelib simplesmtp browserify-builtins NODE_PKGS := addressparser mailparser mailcomposer mimelib simplesmtp browserify-builtins


SED_TRANSFORMS_mailcomposer = s/mimelib-noiconv/mimelib/g

TRANS_NODE_PKGS := $(addprefix node-transformed-deps/,$(NODE_PKGS)) TRANS_NODE_PKGS := $(addprefix node-transformed-deps/,$(NODE_PKGS))
DEP_NODE_PKGS := $(addprefix data/deps/,$(NODE_PKGS)) DEP_NODE_PKGS := $(addprefix data/deps/,$(NODE_PKGS))


Expand All @@ -20,7 +18,6 @@ node-transformed-deps:
$(TRANS_NODE_PKGS): node-transformed-deps $(TRANS_NODE_PKGS): node-transformed-deps
$(RSYNC) node-deps/$(notdir $@) node-transformed-deps $(RSYNC) node-deps/$(notdir $@) node-transformed-deps
$(VOLO) npmrel $@ $(VOLO) npmrel $@
$(if $(SED_TRANSFORMS_$(notdir $@)),sed -i -e "$(SED_TRANSFORMS_$(notdir $@))" node-transformed-deps/$(notdir $@)/lib/*.js)


# the cp is for main shims created by volo # the cp is for main shims created by volo
$(DEP_NODE_PKGS): $(TRANS_NODE_PKGS) $(DEP_NODE_PKGS): $(TRANS_NODE_PKGS)
Expand Down

0 comments on commit efc499f

Please sign in to comment.