summaryrefslogtreecommitdiffhomepage
path: root/vars/nullmailer.vars
diff options
context:
space:
mode:
Diffstat (limited to 'vars/nullmailer.vars')
-rw-r--r--vars/nullmailer.vars13
1 files changed, 7 insertions, 6 deletions
diff --git a/vars/nullmailer.vars b/vars/nullmailer.vars
index e1743c04..b20d725f 100644
--- a/vars/nullmailer.vars
+++ b/vars/nullmailer.vars
@@ -2,12 +2,13 @@
# set +o errexit -o noglob is assumed.
#
-pkg_nullmailer_configure_autotools_pre() {
- touch ${PKG_BUILD_DIR}/ChangeLog
- autoreconf -iv;
-};
-
: ${PKG_NULLMAILER_CONFIG_CACHE_EXTRA:="
local_cv_flag_NAMEDPIPEBUG=no"};
-# vim:filetype=sh
+pkg_nullmailer_configure_autotools_pre() {
+ if ! touch "${PKG_BUILD_DIR}/ChangeLog"; then
+ return 1;
+ fi;
+};
+
+# vim:filetype=sh textwidth=0