summaryrefslogtreecommitdiff
path: root/lang/gcc8
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2019-11-03 19:03:56 +0000
committerrillig <rillig@pkgsrc.org>2019-11-03 19:03:56 +0000
commitf3e75ceb4c3556df6213bde475948b339e473145 (patch)
treeb3b17a0eba0ed16bdb945808e31f63568deae484 /lang/gcc8
parentad8095b0a5c5b758e832cddea87cfb29097177bd (diff)
downloadpkgsrc-f3e75ceb4c3556df6213bde475948b339e473145.tar.gz
lang: align variable assignments
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
Diffstat (limited to 'lang/gcc8')
-rw-r--r--lang/gcc8/options.mk20
1 files changed, 10 insertions, 10 deletions
diff --git a/lang/gcc8/options.mk b/lang/gcc8/options.mk
index 894eb59b015..756a87a9c0e 100644
--- a/lang/gcc8/options.mk
+++ b/lang/gcc8/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2019/09/08 14:47:52 maya Exp $
+# $NetBSD: options.mk,v 1.3 2019/11/03 19:04:00 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.${GCC_PKGNAME}
PKG_SUPPORTED_OPTIONS= nls gcc-inplace-math gcc-c++ gcc-fortran \
@@ -35,9 +35,9 @@ _GNU_INCLUDE_DIR= /usr/include/gnu
. endif
. if exists(${_GNU_INCLUDE_DIR}/stubs-64.h) && \
!exists(${_GNU_INCLUDE_DIR}/stubs-32.h)
-MULTILIB_SUPPORTED=No
+MULTILIB_SUPPORTED= No
. else
-MULTILIB_SUPPORTED=Yes
+MULTILIB_SUPPORTED= Yes
. endif
.endif
.if !empty(MULTILIB_SUPPORTED:M[Yy][Ee][Ss])
@@ -52,24 +52,24 @@ PKG_SUGGESTED_OPTIONS+= gcc-multilib
###
.if empty(PKG_OPTIONS:Malways-libgcc)
-.for _libdir_ in ${_OPSYS_LIB_DIRS}
-. if exists(${_libdir_})
+. for _libdir_ in ${_OPSYS_LIB_DIRS}
+. if exists(${_libdir_})
BASE_LIBGCC!= find ${_libdir_} -name libgcc_s.so
BASE_LIBGCC_MATCH_STRING!= ${ECHO} ${BASE_LIBGCC} ${GCC8_DIST_VERSION} | \
${AWK} -f ../../mk/scripts/larger_symbol_version.awk
-. if ${BASE_LIBGCC_MATCH_STRING:Mnewer}
+. if ${BASE_LIBGCC_MATCH_STRING:Mnewer}
DELETE_INSTALLED_LIBGCC= yes
+. endif
. endif
-. endif
-.endfor
+. endfor
-.if ${DELETE_INSTALLED_LIBGCC:Uno}
+. if ${DELETE_INSTALLED_LIBGCC:Uno}
post-install: delete-installed-libgcc
delete-installed-libgcc:
${FIND} ${DESTDIR} -name 'libgcc_s.so*' -delete
-.endif
+. endif
.endif