mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 13:53:31 +01:00
Report errors when updating configuration files
This commit is contained in:
parent
a1c0ebc3eb
commit
b4c95bb42a
@ -1,12 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
||||||
opt="-if"
|
opt="-i -f -W all,error"
|
||||||
|
|
||||||
for i in $@; do
|
for i in $@; do
|
||||||
case "$i" in
|
case "$i" in
|
||||||
-v)
|
-v)
|
||||||
opt=$opt"v"
|
opt="${opt} -v"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
@ -11,7 +11,7 @@ AC_CONFIG_MACRO_DIR([m4])
|
|||||||
# "foreign" means we don't follow GNU package layout standards
|
# "foreign" means we don't follow GNU package layout standards
|
||||||
# "1.11" means we require automake version 1.11 or newer
|
# "1.11" means we require automake version 1.11 or newer
|
||||||
# "subdir-objects" means put .o files in the same directory as the .c files
|
# "subdir-objects" means put .o files in the same directory as the .c files
|
||||||
AM_INIT_AUTOMAKE([foreign 1.11 subdir-objects])
|
AM_INIT_AUTOMAKE([foreign 1.11 subdir-objects -Wall -Werror])
|
||||||
|
|
||||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||||
AC_CONFIG_HEADERS([orconfig.h])
|
AC_CONFIG_HEADERS([orconfig.h])
|
||||||
|
Loading…
Reference in New Issue
Block a user