diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-04-02 10:24:59 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-04-02 10:24:59 +0200 |
commit | 4bc1041db6ce805a8d96f653e50ce06eb6849d4b (patch) | |
tree | 01ec78391573749298ff91863919a3b653bd253e /package | |
parent | 252d9a20a16c5b15d8754d6dd20b89c18bdcbe30 (diff) |
lighttpd: fix build without webdav support
Fix a typo in the --without-webdav-* handling.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/lighttpd/lighttpd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/lighttpd/lighttpd.mk b/package/lighttpd/lighttpd.mk index 590180153..332afe7a1 100644 --- a/package/lighttpd/lighttpd.mk +++ b/package/lighttpd/lighttpd.mk @@ -47,7 +47,7 @@ ifeq ($(BR2_PACKAGE_LIGHTTPD_WEBDAV),y) LIGHTTPD_DEPENDENCIES += libxml2 sqlite LIGHTTPD_CONF_OPT += --with-webdav-props --with-webdav-locks else -LIGHTTPD_CONF_OPT += ---without-webdav-props --without-webdav-locks +LIGHTTPD_CONF_OPT += --without-webdav-props --without-webdav-locks endif define LIGHTTPD_UNINSTALL_TARGET_CMDS |