Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix race condition in Makefile #12

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open

Commits on Oct 11, 2017

  1. adding the source

    nealvis committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    4fbe5a4 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2017

  1. Configuration menu
    Copy the full SHA
    163be9b View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2017

  1. Configuration menu
    Copy the full SHA
    dd33d3b View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2017

  1. Changes for 1.10.00 release

    Eman Copty committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    b912be7 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2017

  1. Changes for 1.10.01 release

    Eman Copty committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    a517b72 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2017

  1. delete bad readme.md

    Eman Copty committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    28a904d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2eb99e View commit details
    Browse the repository at this point in the history
  3. fixing README.md vs readme.md

    nealvis committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    0f054b9 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2017

  1. Configuration menu
    Copy the full SHA
    d837878 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2017

  1. Update Makefile to include an API make

    The intent of this pull is to streamline the API only make instructions to include it as an option in the download itself.
    kfezer authored Nov 22, 2017
    Configuration menu
    Copy the full SHA
    5c8b682 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2017

  1. Make indent consistent with PEP-8

    - Changed 2-spacing to 4-spacing
    - Make self-consistent indentation
    JustinShenk authored Nov 24, 2017
    Configuration menu
    Copy the full SHA
    3ba3c45 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2017

  1. Changes for 1.11 release

    Eman Copty committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    4810ced View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2018

  1. Merge pull request #6 from JustinShenk/patch-1

    Make indent consistent with PEP-8
    ecopty authored Jan 5, 2018
    Configuration menu
    Copy the full SHA
    dbcc464 View commit details
    Browse the repository at this point in the history
  2. Update Makefile

    ecopty authored Jan 5, 2018
    Configuration menu
    Copy the full SHA
    9003024 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5 from kfezer/patch-1

    Update Makefile to include a "make api" command
    ecopty authored Jan 5, 2018
    Configuration menu
    Copy the full SHA
    7a3f097 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2018

  1. Changes for 1.12 release

    Eman Copty committed Jan 11, 2018
    Configuration menu
    Copy the full SHA
    9ea79bc View commit details
    Browse the repository at this point in the history
  2. 1.12.00 release - documentation update

    Eman Copty committed Jan 11, 2018
    Configuration menu
    Copy the full SHA
    5e6f208 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2018

  1. Fix race condition in Makefile

    Fix the following error:
    ===========
    make install
    ./uninstall-opencv.sh
    make: execvp: ./uninstall-opencv.sh: Text file busy
    Makefile:27: recipe for target 'uninstallopencv' failed
    make: *** [uninstallopencv] Error 127
    
    The problem is that Makefile will run in parallel,
    and chmod and execvp just run at the same time will
    trigger this. git support +x natively.
    Just checkin the code with +x permission and remove
    the chown hack in the Makefile
    ek9852 committed Mar 7, 2018
    Configuration menu
    Copy the full SHA
    8cf81a9 View commit details
    Browse the repository at this point in the history