Skip to content

Commit

Permalink
Fix a stupid mistake in the Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyg committed Nov 9, 2009
1 parent 8471ad4 commit 8fb52ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -11,7 +11,7 @@ pika/spec.py: codegen.py $(AMQP_CODEGEN_DIR)/amqp_codegen.py $(AMQP_SPEC_JSON_PA

# For dev work, when working from a git checkout
codegen/amqp_codegen.py:
[ -d codegen ] && rmdir codegen
if [ -d codegen ]; then rmdir codegen; else true; fi
curl http://hg.rabbitmq.com/rabbitmq-codegen/archive/default.tar.bz2 | tar -jxvf -
mv rabbitmq-codegen-default codegen

Expand Down

0 comments on commit 8fb52ff

Please sign in to comment.