diff options
author | Michele Campus <fci1908@gmail.com> | 2018-03-13 19:44:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 19:44:43 +0100 |
commit | 957b01aa716d3477d2a4530ca12ff209cd225321 (patch) | |
tree | fb543aff96e3a40db7bab3f4e316d2e338f8da4d | |
parent | 3aaae46c660a23a27d113a908fcc4f53d46bfff5 (diff) | |
parent | ac31c1ba980b64b52f70d40d6ba2649111ed52c4 (diff) |
Merge pull request #531 from zyingp/dev-autogen
Add chmod +x to the generated configure file in autogen.sh
-rwxr-xr-x | autogen.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh index 13bb2d801..fecb6b1f8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -44,4 +44,5 @@ autoreconf -ivf cat configure | sed "s/#define PACKAGE/#define NDPI_PACKAGE/g" | sed "s/#define VERSION/#define NDPI_VERSION/g" > configure.tmp cat configure.tmp > configure +chmod +x configure ./configure $* |