diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-07-22 14:10:51 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-07-22 23:34:31 +0200 |
commit | c87f7103fe38434f0b88df5c2b080c7b558feabf (patch) | |
tree | df3447b2a319201eb664ba7cf730a78b2ef2f1fa /configure.ac | |
parent | 2fd8b540c939d1dfdea3f42bd04a378035b3e070 (diff) |
build-sys: hide error message from grep
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b715a34405..cef2539e27 100644 --- a/configure.ac +++ b/configure.ac @@ -509,7 +509,7 @@ if test "z$with_distro" = "z"; then if test "$cross_compiling" = yes; then AC_MSG_WARN([Target distribution cannot be reliably detected when cross-compiling. You should specify it with --with-distro (see $0 --help for recognized distros)]) else - with_distro=$($GREP '^ID=' /etc/os-release | $SED 's/ID=//'); + with_distro=$($GREP '^ID=' /etc/os-release 2>/dev/null | $SED 's/ID=//'); fi if test "z$with_distro" = "z"; then with_distro=other |