From af12b96767e4593d3b990ee094092cc15f638a01 Mon Sep 17 00:00:00 2001 From: Jeff Tratner Date: Thu, 4 Jul 2013 10:05:06 -0400 Subject: [PATCH] CLN: Small fix to clean_pyc task --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5349443ed477f..77342089365f0 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ clean: clean_pyc -find . -name '*.so' -exec rm {} \; clean_pyc: - -find . -name '*.pyc' -or -name '*.pyo' -exec rm {} \; + -find . -name '*.pyc' -exec rm {} \; -or -name '*.pyo' -exec rm {} \; tseries: pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx python setup.py build_ext --inplace