diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-05-19 06:23:13 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-05-19 06:23:13 +0800 |
commit | 9ac89ee43b63b431886c289eca4a5eee510ee2e5 (patch) | |
tree | 5a8b7292e05e05e9a202b983080effd1ddf8e93a /configure.ac | |
parent | 9a3d5911355838c5b20e1cdb139d324fbd1ec390 (diff) | |
download | gsoc2013-epiphany-9ac89ee43b63b431886c289eca4a5eee510ee2e5.tar.gz gsoc2013-epiphany-9ac89ee43b63b431886c289eca4a5eee510ee2e5.tar.zst gsoc2013-epiphany-9ac89ee43b63b431886c289eca4a5eee510ee2e5.zip |
Fix the check for a valid LSB_DISTRIBUTOR string. Patch by Josselin Mouette,
closes: #529778.
svn path=/trunk/; revision=8235
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 c671eeafd..bde94583d 100644 --- a/configure.ac +++ b/configure.ac @@ -498,7 +498,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 |