Permalink
Browse files

Fix 'make clean' for real this time.

Be explicit about the files we're deleting rather than using globs.
  • Loading branch information...
Andy Chu
Andy Chu committed Jul 12, 2018
1 parent 683e6ec commit 2a785a75fd5515b26fc299c5617e1d926c6ad53a
Showing with 6 additions and 3 deletions.
  1. +1 −1 Python-2.7.13/pyconfig.h
  2. +5 −2 build/actions.sh
View
@@ -925,7 +925,7 @@
#define Py_UNICODE_SIZE 2
/* Define if you want to have a Unicode type. */
#define Py_USING_UNICODE 1
#define Py_USING_UNICODE 0
/* assume C89 semantics that RETSIGTYPE is always void */
#define RETSIGTYPE void
View
@@ -212,8 +212,11 @@ clean-repo() {
# - There are no object files written now.
# - We're not cleaning _build/detect-config.* ?
clean-source-tarball-build() {
rm -f -v _bin/oil.*
rm -f -v _build/oil/ovm-opt.* _build/oil/ovm-dbg
rm -f -v _bin/oil.{ovm,ovm-dbg}
# NOTE: delete ovm-opt, ovm-opt.{stripped,symbols}
rm -f -v \
_build/oil/{ovm-opt,ovm-dbg} \
_build/oil/ovm-opt.{stripped,symbols}
}
"$@"

0 comments on commit 2a785a7

Please sign in to comment.