diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index b3f2b0dadb..797d67ea5a 100755 --- a/debian/rules +++ b/debian/rules @@ -59,8 +59,8 @@ CONF_OPTIONS = ifneq (,$(findstring with-dmalloc,$(DEB_BUILD_OPTIONS))) CONF_OPTIONS += --with-dmalloc endif -# inhibit building with --enable-openbsd-malloc -ifeq (,$(findstring no-enable-openbsd-malloc,$(DEB_BUILD_OPTIONS))) +# allow building with --enable-openbsd-malloc +ifneq (,$(findstring enable-openbsd-malloc,$(DEB_BUILD_OPTIONS))) CONF_OPTIONS += --enable-openbsd-malloc endif |