Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: owasp-modsecurity/ModSecurity-Python-bindings
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: nbs-system/ModSecurity-Python-bindings
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 18, 2016

  1. Run tests on build, and don't mute commands

    - The tests are now run before installing the bindings
    - The `make clean` commands aren't muted anymore, because we're removing
      stuff, so the user may want to know about this.
    - The `make clean` command no longer spit warnings
    Julien Voisin committed Feb 18, 2016
    Copy the full SHA
    1b478c4 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 Makefile
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -5,15 +5,15 @@ all:
test:
tests/t.py

install:
install: all test
python setup.py install --prefix=/usr

clean:
@rm modsecurity/modsecurity_wrap.cxx
@rm -rf build
@rm _modsecurity.so
@rm modsecurity/modsecurity.py
@rm *.pyc tests/*.pyc modsecurity/*.pyc
rm -f ./modsecurity/modsecurity_wrap.cxx
rm -rf ./build
rm -f ./_modsecurity.so
rm -f ./modsecurity/modsecurity.py
rm -f ./*.pyc ./tests/*.pyc ./modsecurity/*.pyc