Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
032da29d
Commit
032da29d
authored
Dec 15, 2016
by
cypherpunks
Committed by
Nick Mathewson
Dec 16, 2016
Browse files
Run check-spaces only when Perl is available
Also permit users to override the Perl variable with relative paths.
parent
e8760b6e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
032da29d
...
...
@@ -181,11 +181,13 @@ coverage-html-full: all
# Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
# tinytest*.[ch]
check-spaces
:
$(top_srcdir)
/scripts/maint/checkSpace.pl
-C
\
if
USE_PERL
$(PERL)
$(top_srcdir)/scripts/maint/checkSpace.pl
-C
\
$(top_srcdir)/src/common/*.[ch]
\
$(top_srcdir)/src/or/*.[ch]
\
$(top_srcdir)/src/test/*.[ch]
\
$(top_srcdir)/src/tools/*.[ch]
endif
check-docs
:
all
$(PERL)
$(top_builddir)
/scripts/maint/checkOptionDocs.pl
...
...
configure.ac
View file @
032da29d
...
...
@@ -195,7 +195,9 @@ AC_PROG_CPP
AC_PROG_MAKE_SET
AC_PROG_RANLIB
AC_PATH_PROG([PERL], [perl])
AC_ARG_VAR([PERL], [path to Perl binary])
AC_CHECK_PROGS([PERL], [perl])
AM_CONDITIONAL(USE_PERL, [test "x$ac_cv_prog_PERL" != "x"])
dnl autoconf 2.59 appears not to support AC_PROG_SED
AC_CHECK_PROG([SED],[sed],[sed],[/bin/false])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment