~ubuntu-branches/ubuntu/natty/inetutils/natty

« back to all changes in this revision

Viewing changes to debian/patches/99_acinclude_del_dnl.patch

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2009-08-18 05:51:23 UTC
  • Revision ID: james.westby@ubuntu.com-20090818055123-b5mg20pgl48dq80z
Tags: 2:1.6-2
* Use $(filter ...) instead of $(findstring ...) to extract space separated
  options from DEB_BUILD_OPTIONS in debian/rules.
* Add support for LSB status action on init scripts.
* Use a variable instead of hardcoding the pid file path in inetutils-inetd
  init script.
* Restore the traditional behavior of ping without -c option.
  Stolen from upstream. (Closes: #524011)
* Fix build failure due to an m4 comment eating a new line.
  Stolen from upstream. (Closes: #541775)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 81676d4013791d32315d098541886e3207b6077d Mon Sep 17 00:00:00 2001
 
2
From: Simon Josefsson <simon@josefsson.org>
 
3
Date: Sat, 2 May 2009 06:38:27 +0000
 
4
Subject: [PATCH] acinclude.m4: Avoid comment to fix script.
 
5
 
 
6
---
 
7
 acinclude.m4 |    4 ++--
 
8
 2 files changed, 6 insertions(+), 2 deletions(-)
 
9
 
 
10
diff --git a/acinclude.m4 b/acinclude.m4
 
11
index ebb8ee1..6206545 100644
 
12
--- a/acinclude.m4
 
13
+++ b/acinclude.m4
 
14
@@ -1,6 +1,6 @@
 
15
 dnl Autoconf macros used by inetutils
 
16
 dnl
 
17
-dnl Copyright (C) 1996, 1997, 1998, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
 
18
+dnl Copyright (C) 1996, 1997, 1998, 2002, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
 
19
 dnl
 
20
 dnl Mostly written by Miles Bader <miles@gnu.ai.mit.edu>
 
21
 dnl
 
22
@@ -577,7 +577,7 @@ if (sizeof(ac_aggr.m4_bpatsubst([$1], [^[^.]*\.])))
 
23
 return 0;])],
 
24
                 [AS_VAR_SET(ac_Member, yes)],
 
25
                 [AS_VAR_SET(ac_Member, no)])])
 
26
-AS_IF([test AS_VAR_GET(ac_Member) = yes], [$2], [$3])dnl
 
27
+AS_IF([test AS_VAR_GET(ac_Member) = yes], [$2], [$3])
 
28
 AS_VAR_POPDEF([ac_Member])dnl
 
29
 ])dnl IU_CHECK_MEMBER
 
30
 
 
31
-- 
 
32
1.6.3.3
 
33