Skip to content

Commit 1d58bf1

Browse files
committed
Merge pull request #4124 from jtratner/small_Makefile_fix
CLN: Small fix to clean_pyc task
2 parents 5b3241b + af12b96 commit 1d58bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ clean: clean_pyc
55
-find . -name '*.so' -exec rm {} \;
66

77
clean_pyc:
8-
-find . -name '*.pyc' -or -name '*.pyo' -exec rm {} \;
8+
-find . -name '*.pyc' -exec rm {} \; -or -name '*.pyo' -exec rm {} \;
99

1010
tseries: pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx
1111
python setup.py build_ext --inplace

0 commit comments

Comments
 (0)