diff options
author | rillig <rillig@pkgsrc.org> | 2019-11-03 17:14:24 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-11-03 17:14:24 +0000 |
commit | 77f8d7c37cb5f47c19ea3a443382706b5d463f4b (patch) | |
tree | 90624493479931270d8de4019800abc0acda4dff /converters/libiconv | |
parent | a5388c1842a0443d90a11e6ff6e96d26fb7ee265 (diff) | |
download | pkgsrc-77f8d7c37cb5f47c19ea3a443382706b5d463f4b.tar.gz |
converters: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
No manual corrections.
Diffstat (limited to 'converters/libiconv')
-rw-r--r-- | converters/libiconv/builtin.mk | 8 | ||||
-rw-r--r-- | converters/libiconv/hacks.mk | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/converters/libiconv/builtin.mk b/converters/libiconv/builtin.mk index d23c2a9565f..28988c94c5f 100644 --- a/converters/libiconv/builtin.mk +++ b/converters/libiconv/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.23 2013/11/23 10:58:46 obache Exp $ +# $NetBSD: builtin.mk,v 1.24 2019/11/03 17:14:25 rillig Exp $ BUILTIN_PKG:= iconv @@ -25,7 +25,7 @@ IS_BUILTIN.iconv= no IS_BUILTIN.iconv= yes . endif .endif -MAKEVARS+= IS_BUILTIN.iconv +MAKEVARS+= IS_BUILTIN.iconv ### ### If there is a built-in implementation, then set BUILTIN_PKG.<pkg> to @@ -54,7 +54,7 @@ BUILTIN_VERSION.iconv= 1.9.2 # latest version on 1.9.x branch . endif BUILTIN_PKG.iconv= libiconv-${BUILTIN_VERSION.iconv} .endif -MAKEVARS+= BUILTIN_PKG.iconv +MAKEVARS+= BUILTIN_PKG.iconv ### ### Determine whether we should use the built-in implementation if it @@ -112,7 +112,7 @@ USE_BUILTIN.iconv= no . endfor . endif # PREFER.iconv .endif -MAKEVARS+= USE_BUILTIN.iconv +MAKEVARS+= USE_BUILTIN.iconv # If USE_GNU_ICONV is defined, then force the use of a GNU libiconv # implementation. diff --git a/converters/libiconv/hacks.mk b/converters/libiconv/hacks.mk index 2f48f41b024..8e602d1b4a1 100644 --- a/converters/libiconv/hacks.mk +++ b/converters/libiconv/hacks.mk @@ -1,4 +1,4 @@ -# $NetBSD: hacks.mk,v 1.3 2010/11/05 16:43:55 shattered Exp $ +# $NetBSD: hacks.mk,v 1.4 2019/11/03 17:14:25 rillig Exp $ .if !defined(LIBICONV_HACKS_MK) LIBICONV_HACKS_MK= # defined @@ -10,7 +10,7 @@ LIBICONV_HACKS_MK= # defined .if !empty(MACHINE_PLATFORM:MIRIX-5.3-*) PKG_HACKS+= sys_types_h-inttypes_h-conflict post-wrapper: - ${MKDIR} ${BUILDLINK_DIR}/include/sys && ${GREP} -v '^typedef.*[^u_]int[12368]*_t;' /usr/include/sys/types.h > ${BUILDLINK_DIR}/include/sys/types.h + ${MKDIR} ${BUILDLINK_DIR}/include/sys && ${GREP} -v '^typedef.*[^u_]int[12368]*_t;' /usr/include/sys/types.h > ${BUILDLINK_DIR}/include/sys/types.h # should match int8_t, int16_t, and int32_t (only) .endif |