diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-11 05:22:03 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-11 05:22:03 +0000 |
commit | 9a2b543ac37d2f8187889def024f007af321708e (patch) | |
tree | a3053f68cdabaefad6764deea8445dd3b5ec4148 /mk/tools/autoconf.mk | |
parent | df53a167dae85b10e168ce7ed1510efa4c8f0792 (diff) | |
download | pkgsrc-9a2b543ac37d2f8187889def024f007af321708e.tar.gz |
Remove unnecessary .undef lines after .for loops as the loop variables
are automatically undefined after the loop exits.
Diffstat (limited to 'mk/tools/autoconf.mk')
-rw-r--r-- | mk/tools/autoconf.mk | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mk/tools/autoconf.mk b/mk/tools/autoconf.mk index 3bc6c5e4b47..42105311c04 100644 --- a/mk/tools/autoconf.mk +++ b/mk/tools/autoconf.mk @@ -1,4 +1,4 @@ -# $NetBSD: autoconf.mk,v 1.10 2005/06/01 20:08:01 jlam Exp $ +# $NetBSD: autoconf.mk,v 1.11 2005/06/11 05:22:03 jlam Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -84,7 +84,6 @@ _TOOLS_AC_NAMES+= ifnames ifnames-2.13 .for _t_ in ${_TOOLS_AC_NAMES} _TOOLS_AC_TYPE.${_t_}?= TOOLS_GNU_MISSING .endfor _t_ -.undef _t_ .if !defined(TOOLS_IGNORE.autoconf) && !empty(USE_TOOLS:Mautoconf) . if !empty(PKGPATH:Mdevel/autoconf) @@ -179,7 +178,6 @@ AUTOMAKE_OVERRIDE?= yes ${_TOOLS_AC_TYPE.${_t_}}+= ${_t_} . endif . endfor -. undef _t_ .endif # LIBTOOL_M4_OVERRIDE lists the locations where the libtool.m4 symlink @@ -209,4 +207,3 @@ tools-libtool-m4-override: fi; \ done .endfor -.undef _pattern_ |