diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 09:14:19 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 14:26:47 -0400 |
commit | 56c1fbf33f34e010ec33e7660fab3ec3ecb43fc8 (patch) | |
tree | 5b03a6971ed3c7880f50dd9d079dc6eb91c27b33 /configure.ac | |
parent | 8dcc015975856cde2b78f903fd85a0dc7163dfcd (diff) | |
download | tor-56c1fbf33f34e010ec33e7660fab3ec3ecb43fc8.tar.gz tor-56c1fbf33f34e010ec33e7660fab3ec3ecb43fc8.zip |
Use the "commands" argument of AC_CONFIG_FILES to make scripts +x
Closes ticket 26439.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 30f8e63ec5..14a1a9436d 100644 --- a/configure.ac +++ b/configure.ac @@ -2275,6 +2275,13 @@ AC_CONFIG_FILES([ src/rust/.cargo/config scripts/maint/checkOptionDocs.pl scripts/maint/updateVersions.pl +], [ + chmod +x contrib/dist/suse/tor.sh + chmod +x link_rust.sh + chmod +x contrib/dist/tor.sh + chmod +x contrib/dist/torctl + chmod +x scripts/maint/checkOptionDocs.pl + chmod +x scripts/maint/updateVersions.pl ]) if test "x$asciidoc" = "xtrue" && test "$ASCIIDOC" = "none"; then |