diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-05-19 06:36:31 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-05-19 06:36:31 +0800 |
commit | b8b5ce3bba3644d96061c233692f33898429f9f0 (patch) | |
tree | ae12e194bc03e5bee48f78d1da042d46939bc66d /configure.ac | |
parent | e2a6ff17e7c8e4f071d8daa0fc1e2ad68890f346 (diff) | |
download | gsoc2013-epiphany-b8b5ce3bba3644d96061c233692f33898429f9f0.tar gsoc2013-epiphany-b8b5ce3bba3644d96061c233692f33898429f9f0.tar.gz gsoc2013-epiphany-b8b5ce3bba3644d96061c233692f33898429f9f0.tar.bz2 gsoc2013-epiphany-b8b5ce3bba3644d96061c233692f33898429f9f0.tar.lz gsoc2013-epiphany-b8b5ce3bba3644d96061c233692f33898429f9f0.tar.xz gsoc2013-epiphany-b8b5ce3bba3644d96061c233692f33898429f9f0.tar.zst gsoc2013-epiphany-b8b5ce3bba3644d96061c233692f33898429f9f0.zip |
Fix the check for a valid LSB_DISTRIBUTOR string. Patch by Josselin Mouette,
closes: #529778.
svn path=/branches/gnome-2-22/; revision=8236
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 627e709d8..afc32d903 100644 --- a/configure.ac +++ b/configure.ac @@ -761,7 +761,7 @@ AC_ARG_WITH([distributor-name], AS_HELP_STRING([--with-distributor-name=name],[Set the distributor name]), [LSB_DISTRIBUTOR="$withval"]) -if test -z "$LSB_DISTRIBUTOR" = ""; then +if test -z "$LSB_DISTRIBUTOR"; then AC_CHECK_PROGS([LSB_RELEASE], [lsb_release],) if test -n "$LSB_RELEASE"; then # Fallback on lsb_release if available |