===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ghc-8.10.2/docs/users_guide/ghci.rst-3201-1. :file:`{ghcappdata}/ghci.conf`, where ⟨ghcappdata⟩ depends on
ghc-8.10.2/docs/users_guide/ghci.rst:3202:   your system, but is usually something like :file:`$HOME/.ghc` on
ghc-8.10.2/docs/users_guide/ghci.rst-3203-   Unix or :file:`C:/Documents and Settings/user/Application
##############################################
ghc-8.10.2/docs/users_guide/ghci.rst-3205-
ghc-8.10.2/docs/users_guide/ghci.rst:3206:2. :file:`$HOME/.ghci`
ghc-8.10.2/docs/users_guide/ghci.rst-3207-
##############################################
ghc-8.10.2/docs/users_guide/shared_libs.rst-197-use a subdirectory relative to the executable e.g.
ghc-8.10.2/docs/users_guide/shared_libs.rst:198:``-optl-Wl,-rpath,'$ORIGIN/lib'``.
ghc-8.10.2/docs/users_guide/shared_libs.rst-199-
##############################################
ghc-8.10.2/docs/users_guide/shared_libs.rst-202-The difference is that with the ``deploy`` mode, the above example will
ghc-8.10.2/docs/users_guide/shared_libs.rst:203:end up with an ELF ``RUNPATH`` of just ``$ORIGIN`` while with the
ghc-8.10.2/docs/users_guide/shared_libs.rst:204:``sysdep`` mode the ``RUNPATH`` will be ``$ORIGIN`` followed by all the
ghc-8.10.2/docs/users_guide/shared_libs.rst-205-library directories of all the packages that the program depends on
##############################################
ghc-8.10.2/docs/users_guide/win32-dlls.rst-189--  If you have to use absolute paths (beware of the innocent-looking
ghc-8.10.2/docs/users_guide/win32-dlls.rst:190:   ``ROOT=$(pwd)`` in makefile hierarchies or configure scripts), Cygwin
ghc-8.10.2/docs/users_guide/win32-dlls.rst-191-   provides a tool called ``cygpath`` that can convert Cygwin's
##############################################
ghc-8.10.2/docs/users_guide/packages.rst-395--  The *user package database* private to each user. On Unix systems this will
ghc-8.10.2/docs/users_guide/packages.rst:396:   be ``$HOME/.ghc/arch-os-version/package.conf.d``, and on Windows it will
ghc-8.10.2/docs/users_guide/packages.rst-397-   be something like
##############################################
ghc-8.10.2/docs/users_guide/packages.rst-580-    Use the package environment in ⟨file⟩, or in
ghc-8.10.2/docs/users_guide/packages.rst:581:    ``$HOME/.ghc/arch-os-version/environments/⟨name⟩``
ghc-8.10.2/docs/users_guide/packages.rst-582-    If set to ``-`` no package environment is read.
##############################################
ghc-8.10.2/docs/users_guide/packages.rst-593-
ghc-8.10.2/docs/users_guide/packages.rst:594:-  File ``$HOME/.ghc/arch-os-version/environments/name`` if you pass the
ghc-8.10.2/docs/users_guide/packages.rst-595-   option ``-package-env ⟨name⟩``.
##############################################
ghc-8.10.2/docs/users_guide/packages.rst-599-
ghc-8.10.2/docs/users_guide/packages.rst:600:-  File ``$HOME/.ghc/arch-os-version/environments/name`` if the
ghc-8.10.2/docs/users_guide/packages.rst-601-   environment variable :envvar:`GHC_ENVIRONMENT` is set to ⟨name⟩.
##############################################
ghc-8.10.2/docs/users_guide/packages.rst-608-
ghc-8.10.2/docs/users_guide/packages.rst:609:-  File ``$HOME/.ghc/arch-os-version/environments/default`` if it
ghc-8.10.2/docs/users_guide/packages.rst-610-   exists.
##############################################
ghc-8.10.2/docs/users_guide/8.10.1-notes.rst-355-- TH splices by default don't generate warnings anymore. For example,
ghc-8.10.2/docs/users_guide/8.10.1-notes.rst:356:  ``$([d| f :: Int -> void; f x = case x of {} |])`` used to generate a
ghc-8.10.2/docs/users_guide/8.10.1-notes.rst-357-  pattern-match exhaustivity warning, which now it doesn't. The user can
##############################################
ghc-8.10.2/docs/users_guide/using.rst-433-    files (usually something like ``/usr/local/lib/ghc-5.04`` on Unix).
ghc-8.10.2/docs/users_guide/using.rst:434:    This is the value of ``$libdir`` in the package
ghc-8.10.2/docs/users_guide/using.rst-435-    configuration file (see :ref:`packages`).
##############################################
ghc-8.10.2/docs/users_guide/using-optimisation.rst-230-    This is mostly done during Cmm passes. However this can miss corner cases. So at -O2
ghc-8.10.2/docs/users_guide/using-optimisation.rst:231:    we run the pass again at the asm stage to catch these.
ghc-8.10.2/docs/users_guide/using-optimisation.rst-232-
##############################################
ghc-8.10.2/docs/users_guide/extending_ghc.rst-65-   To be precise, the annotation ``{-# ANN x e #-}`` is well staged if
ghc-8.10.2/docs/users_guide/extending_ghc.rst:66:   and only if ``$(e)`` would be (disregarding the usual type
ghc-8.10.2/docs/users_guide/extending_ghc.rst-67-   restrictions of the splice syntax, and the usual restriction on
ghc-8.10.2/docs/users_guide/extending_ghc.rst:68:   splicing inside a splice - ``$([|1|])`` is fine as an annotation,
ghc-8.10.2/docs/users_guide/extending_ghc.rst-69-   albeit redundant).
##############################################
ghc-8.10.2/docs/users_guide/phases.rst-532-    and pass ``-F -pgmF convert.sh`` to GHC. The ``-f l1`` option tells
ghc-8.10.2/docs/users_guide/phases.rst:533:    iconv to convert your Latin-1 file, supplied in argument ``$2``,
ghc-8.10.2/docs/users_guide/phases.rst-534-    while the "-t utf-8" options tell iconv to return a UTF-8 encoded
ghc-8.10.2/docs/users_guide/phases.rst:535:    file. The result is redirected into argument ``$3``. The
ghc-8.10.2/docs/users_guide/phases.rst:536:    ``echo "{-# LINE 1 \"$2\" #-}"`` just makes sure that your error
ghc-8.10.2/docs/users_guide/phases.rst-537-    positions are reported as in the original source file.
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1168-The language option :extension:`ApplicativeDo` enables an alternative translation for
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:1169:the do-notation, which uses the operators ``<$>``, ``<*>``, along with ``join``
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1170-as far as possible. There are two main reasons for wanting to do this:
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1205-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:1206:Note that if the expression can't be translated into uses of ``<$>``, ``<*>``
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1207-only, then it will incur a ``Monad`` constraint as usual. This happens when
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1231-- ``return E``
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:1232:- ``return $ E``
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1233-- ``pure E``
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:1234:- ``pure $ E``
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1235-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1236-otherwise GHC cannot recognise it as a ``return`` statement, and the
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:1237:transformation to use ``<$>`` that we saw above does not apply.  In
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:1238:particular, slight variations such as ``return . Just $ x`` or ``let x
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-1239-= e in return x`` would not be recognised.
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-2430-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:2431:``$(``, ``$$(``, ``$varid``, ``$$varid``
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-2432-    .. index::
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13110-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13111:-  A splice is written ``$x``, where ``x`` is an identifier, or
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13112:   ``$(...)``, where the "..." is an arbitrary expression. There must be
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13113-   no space between the "$" and the identifier or parenthesis. This use
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13149-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13150:-  A *typed* expression splice is written ``$$x``, where ``x`` is an
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13151:   identifier, or ``$$(...)``, where the "..." is an arbitrary
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13152-   expression.
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13239-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13240:-  You may omit the ``$(...)`` in a top-level declaration splice. Simply
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13241-   writing an expression (rather than a declaration) implies a splice.
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13339-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13340:   1. The splice ``$(th1 ...)`` would see the definition of ``f`` - the
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13341-      splice is top-level and thus all definitions in the previous
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13344-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13345:   2. The splice ``$(blah1)`` cannot refer to the function ``w`` - ``w`` is
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13346-      part of a later declaration group, and thus invisible, similarly,
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13347:      ``$(blah1)`` cannot see the definition of ``h`` (since it is part of
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13348:      the same declaration group as ``$(blah1)``. However, the splice
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13349:      ``$(blah1)`` can see the definition of ``f`` (since it is in the
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13350-      immediately preceding declaration group).
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13351-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13352:   3. The splice ``$(th2 ...)`` would see the definition of ``f``, all the
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13353:      bindings created by ``$(th1 ...)``, the definition of ``h`` and all
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13354-      bindings created by ``[qq|blah|]`` (they are all in previous
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13365-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13366:   6. The splice ``$(blah2)`` would see the same definitions as the splice
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13367:      ``$(th2 ...)`` (but *not* any bindings it creates).
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13368-
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13384-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13385:   1. The splice ``$(th1 ...)`` *cannot* refer to ``D`` - it is in the same
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13386-      declaration group.
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13387-   2. The declaration group containing ``D`` is terminated by the empty
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13388:      top-level declaration splice ``$(return [])`` (recall, ``Q`` is a
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13389-      Monad, so we may simply ``return`` the empty list of declarations).
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13390-   3. Since the declaration group containing ``D`` is in the previous
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13391:      declaration group, the splice ``$(th2 ...)`` *can* refer to ``D``.
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13392-
##############################################
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13681-
ghc-8.10.2/docs/users_guide/glasgow_exts.rst:13682:-  Unlike normal declaration splices of the form ``$(...)``, declaration
ghc-8.10.2/docs/users_guide/glasgow_exts.rst-13683-   quasi-quotes do not cause a declaration group break. See
##############################################
ghc-8.10.2/docs/storage-mgt/rp.tex-174-./fptools/mk    vi build.mk
ghc-8.10.2/docs/storage-mgt/rp.tex:175:    GhcHcOpts = -O -fasm -Rghc-timing
ghc-8.10.2/docs/storage-mgt/rp.tex-176-    GhcRtsHcOpts = 
##############################################
ghc-8.10.2/docs/opt-coercion/fc-normalization-rta.tex-549-type $\tau \psim \phi$.  
ghc-8.10.2/docs/opt-coercion/fc-normalization-rta.tex:550:We use the symbol ``$\psim$'' to denote type equality\footnote{The ``$\#$'' subscript
ghc-8.10.2/docs/opt-coercion/fc-normalization-rta.tex-551-is irrelevant for this paper; the interested reader may consult 
##############################################
ghc-8.10.2/docs/opt-coercion/fc-normalization-rta.tex-931-for example, we will 
ghc-8.10.2/docs/opt-coercion/fc-normalization-rta.tex:932:allow the term $(\gamma_1;\gamma_2;);\gamma_3$ to be written as $\G[\gamma_2;\gamma_3]$ where $\G = \gamma_1;\Box$. This treatment of 
ghc-8.10.2/docs/opt-coercion/fc-normalization-rta.tex-933-transitivity is extremely convenient, but we must be careful to ensure that our argument for termination 
##############################################
ghc-8.10.2/docs/rts/rts.tex-3596-\\
ghc-8.10.2/docs/rts/rts.tex:3597:where $\size{\as} = m$ and $\size{\bs} = n$.
ghc-8.10.2/docs/rts/rts.tex-3598-
##############################################
ghc-8.10.2/docs/rts/rts.tex-3643-\\
ghc-8.10.2/docs/rts/rts.tex:3644:where $C = \sigma!o'$ and $\size{\ws} = \arity{C}$.
ghc-8.10.2/docs/rts/rts.tex-3645-
##############################################
ghc-8.10.2/docs/rts/rts.tex-3654-\\
ghc-8.10.2/docs/rts/rts.tex:3655:where $\size{\ws} = m$.
ghc-8.10.2/docs/rts/rts.tex-3656-
##############################################
ghc-8.10.2/docs/rts/rts.tex-3663-\\
ghc-8.10.2/docs/rts/rts.tex:3664:where $\size{\ws} = m$.
ghc-8.10.2/docs/rts/rts.tex-3665-
##############################################
ghc-8.10.2/config.guess-34-
ghc-8.10.2/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/config.guess-36-
##############################################
ghc-8.10.2/config.guess-105-    # shellcheck disable=SC2039
ghc-8.10.2/config.guess:106:    { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
ghc-8.10.2/config.guess-107-	{ test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } ||
##############################################
ghc-8.10.2/config.guess-155-	EOF
ghc-8.10.2/config.guess:156:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
ghc-8.10.2/config.guess-157-
##############################################
ghc-8.10.2/config.guess-192-	    earmv*)
ghc-8.10.2/config.guess:193:		arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
ghc-8.10.2/config.guess:194:		endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
ghc-8.10.2/config.guess-195-		machine="${arch}${endian}"-unknown
##############################################
ghc-8.10.2/config.guess-224-		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
ghc-8.10.2/config.guess:225:		abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
ghc-8.10.2/config.guess-226-		;;
##############################################
ghc-8.10.2/config.guess-237-	    *)
ghc-8.10.2/config.guess:238:		release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
ghc-8.10.2/config.guess-239-		;;
##############################################
ghc-8.10.2/config.guess-290-	*4.0)
ghc-8.10.2/config.guess:291:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
ghc-8.10.2/config.guess-292-		;;
ghc-8.10.2/config.guess-293-	*5.*)
ghc-8.10.2/config.guess:294:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
ghc-8.10.2/config.guess-295-		;;
##############################################
ghc-8.10.2/config.guess-300-	# types through head -n 1, so we only detect the type of CPU 0.
ghc-8.10.2/config.guess:301:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
ghc-8.10.2/config.guess-302-	case "$ALPHA_CPU_TYPE" in
##############################################
ghc-8.10.2/config.guess-338-	# 1.2 uses "1.2" for uname -r.
ghc-8.10.2/config.guess:339:	echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
ghc-8.10.2/config.guess-340-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
ghc-8.10.2/config.guess-389-    s390x:SunOS:*:*)
ghc-8.10.2/config.guess:390:	echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
ghc-8.10.2/config.guess-391-	exit ;;
ghc-8.10.2/config.guess-392-    sun4H:SunOS:5.*:*)
ghc-8.10.2/config.guess:393:	echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/config.guess-394-	exit ;;
ghc-8.10.2/config.guess-395-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
ghc-8.10.2/config.guess:396:	echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
ghc-8.10.2/config.guess-397-	exit ;;
##############################################
ghc-8.10.2/config.guess-414-	fi
ghc-8.10.2/config.guess:415:	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/config.guess-416-	exit ;;
##############################################
ghc-8.10.2/config.guess-420-	# it's likely to be more like Solaris than SunOS4.
ghc-8.10.2/config.guess:421:	echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/config.guess-422-	exit ;;
##############################################
ghc-8.10.2/config.guess-429-	# Japanese Language versions have a version number like `4.1.3-JL'.
ghc-8.10.2/config.guess:430:	echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
ghc-8.10.2/config.guess-431-	exit ;;
##############################################
ghc-8.10.2/config.guess-435-    sun*:*:4.2BSD:*)
ghc-8.10.2/config.guess:436:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
ghc-8.10.2/config.guess-437-	test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
##############################################
ghc-8.10.2/config.guess-517-	$CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
ghc-8.10.2/config.guess:518:	  dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
ghc-8.10.2/config.guess:519:	  SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
ghc-8.10.2/config.guess-520-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/config.guess-573-    *:IRIX*:*:*)
ghc-8.10.2/config.guess:574:	echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
ghc-8.10.2/config.guess-575-	exit ;;
##############################################
ghc-8.10.2/config.guess-603-EOF
ghc-8.10.2/config.guess:604:		if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
ghc-8.10.2/config.guess-605-		then
##############################################
ghc-8.10.2/config.guess-616-    *:AIX:*:[4567])
ghc-8.10.2/config.guess:617:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
ghc-8.10.2/config.guess-618-	if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
##############################################
ghc-8.10.2/config.guess-652-    9000/[34678]??:HP-UX:*:*)
ghc-8.10.2/config.guess:653:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/config.guess-654-	case "$UNAME_MACHINE" in
##############################################
ghc-8.10.2/config.guess-706-EOF
ghc-8.10.2/config.guess:707:		    (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
ghc-8.10.2/config.guess-708-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
ghc-8.10.2/config.guess-734-    ia64:HP-UX:*:*)
ghc-8.10.2/config.guess:735:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/config.guess-736-	echo ia64-hp-hpux"$HPUX_REV"
##############################################
ghc-8.10.2/config.guess-764-EOF
ghc-8.10.2/config.guess:765:	$CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
ghc-8.10.2/config.guess-766-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/config.guess-835-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/config.guess:836:	FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
ghc-8.10.2/config.guess-837-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/config.guess-840-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/config.guess:841:	FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
ghc-8.10.2/config.guess-842-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/config.guess-858-	then
ghc-8.10.2/config.guess:859:	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi
ghc-8.10.2/config.guess-860-	else
ghc-8.10.2/config.guess:861:	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf
ghc-8.10.2/config.guess-862-	fi
##############################################
ghc-8.10.2/config.guess-871-	esac
ghc-8.10.2/config.guess:872:	echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
ghc-8.10.2/config.guess-873-	exit ;;
##############################################
ghc-8.10.2/config.guess-907-    prep*:SunOS:5.*:*)
ghc-8.10.2/config.guess:908:	echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/config.guess-909-	exit ;;
##############################################
ghc-8.10.2/config.guess-911-	# the GNU system
ghc-8.10.2/config.guess:912:	echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
ghc-8.10.2/config.guess-913-	exit ;;
##############################################
ghc-8.10.2/config.guess-915-	# other systems with GNU libc and userland
ghc-8.10.2/config.guess:916:	echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
ghc-8.10.2/config.guess-917-	exit ;;
##############################################
ghc-8.10.2/config.guess-1037-EOF
ghc-8.10.2/config.guess:1038:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'`"
ghc-8.10.2/config.guess-1039-	test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; }
##############################################
ghc-8.10.2/config.guess-1137-    i*86:*:4.*:*)
ghc-8.10.2/config.guess:1138:	UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
ghc-8.10.2/config.guess-1139-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
ghc-8.10.2/config.guess-1440-    *:DragonFly:*:*)
ghc-8.10.2/config.guess:1441:	echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
ghc-8.10.2/config.guess-1442-	exit ;;
##############################################
ghc-8.10.2/config.guess-1453-    i*86:skyos:*:*)
ghc-8.10.2/config.guess:1454:	echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
ghc-8.10.2/config.guess-1455-	exit ;;
##############################################
ghc-8.10.2/config.guess-1603-
ghc-8.10.2/config.guess:1604:$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` &&
ghc-8.10.2/config.guess-1605-	{ echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/compiler/cmm/PprC.hs-490-
ghc-8.10.2/compiler/cmm/PprC.hs:491:    CmmBlock bid       -> mkW_ <> pprCLabelAddr (infoTblLbl bid)
ghc-8.10.2/compiler/cmm/PprC.hs-492-    CmmHighStackMark   -> panic "PprC printing high stack mark"
##############################################
ghc-8.10.2/compiler/cmm/CLabel.hs-1246- | platformOS platform == OSMinGW32
ghc-8.10.2/compiler/cmm/CLabel.hs:1247:    -- In asm mode, we need to put the suffix on a stdcall ForeignLabel.
ghc-8.10.2/compiler/cmm/CLabel.hs-1248-    -- (The C compiler does this itself).
##############################################
ghc-8.10.2/compiler/cmm/CmmNode.hs-546-wrapRecExpf f e@(CmmMachOp _ es) z = foldr (wrapRecExpf f) (f e z) es
ghc-8.10.2/compiler/cmm/CmmNode.hs:547:wrapRecExpf f e@(CmmLoad addr _) z = wrapRecExpf f addr (f e z)
ghc-8.10.2/compiler/cmm/CmmNode.hs-548-wrapRecExpf f e                  z = f e z
##############################################
ghc-8.10.2/compiler/cmm/CmmParse.hs-3393-
ghc-8.10.2/compiler/cmm/CmmParse.hs:3394:indexShortOffAddr (HappyA# arr) off =
ghc-8.10.2/compiler/cmm/CmmParse.hs-3395-        Happy_GHC_Exts.narrow16Int# i
##############################################
ghc-8.10.2/compiler/cmm/CmmSink.hs-590-  | CmmStore addr' e <- node
ghc-8.10.2/compiler/cmm/CmmSink.hs:591:  , memConflicts addr (loadAddr dflags addr' (cmmExprWidth dflags e)) = True
ghc-8.10.2/compiler/cmm/CmmSink.hs-592-
##############################################
ghc-8.10.2/compiler/cmm/CmmSink.hs-748-exprMem :: DynFlags -> CmmExpr -> AbsMem
ghc-8.10.2/compiler/cmm/CmmSink.hs:749:exprMem dflags (CmmLoad addr w)  = bothMems (loadAddr dflags addr (typeWidth w)) (exprMem dflags addr)
ghc-8.10.2/compiler/cmm/CmmSink.hs-750-exprMem dflags (CmmMachOp _ es)  = foldr bothMems NoMem (map (exprMem dflags) es)
##############################################
ghc-8.10.2/compiler/cmm/CmmLex.hs-703-{-# INLINE alexIndexInt16OffAddr #-}
ghc-8.10.2/compiler/cmm/CmmLex.hs:704:alexIndexInt16OffAddr (AlexA# arr) off =
ghc-8.10.2/compiler/cmm/CmmLex.hs-705-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/compiler/cmm/CmmLex.hs-720-{-# INLINE alexIndexInt32OffAddr #-}
ghc-8.10.2/compiler/cmm/CmmLex.hs:721:alexIndexInt32OffAddr (AlexA# arr) off =
ghc-8.10.2/compiler/cmm/CmmLex.hs-722-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/compiler/stranal/WorkWrap.hs-270-
ghc-8.10.2/compiler/stranal/WorkWrap.hs:271:Yikes! The reboxed `C` in `$wfc` can't cancel out, so we are in a bad place.
ghc-8.10.2/compiler/stranal/WorkWrap.hs-272-This generalises to any function that derives its strictness signature from
##############################################
ghc-8.10.2/compiler/llvmGen/LlvmMangler.hs-11-
ghc-8.10.2/compiler/llvmGen/LlvmMangler.hs:12:module LlvmMangler ( llvmFixupAsm ) where
ghc-8.10.2/compiler/llvmGen/LlvmMangler.hs-13-
##############################################
ghc-8.10.2/compiler/llvmGen/LlvmMangler.hs-25--- | Read in assembly file and process
ghc-8.10.2/compiler/llvmGen/LlvmMangler.hs:26:llvmFixupAsm :: DynFlags -> FilePath -> FilePath -> IO ()
ghc-8.10.2/compiler/llvmGen/LlvmMangler.hs:27:llvmFixupAsm dflags f1 f2 = {-# SCC "llvm_mangler" #-}
ghc-8.10.2/compiler/llvmGen/LlvmMangler.hs-28-    withTiming dflags (text "LLVM Mangler") id $
##############################################
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen/CodeGen.hs-267-    dstV <- getCmmRegW (CmmLocal dst)
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen/CodeGen.hs:268:    v1 <- genLoadW True addr (localRegType dst)
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen/CodeGen.hs-269-    statement $ Store v1 dstV
##############################################
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen/CodeGen.hs-1547-        -- implementation. Its much longer due to type information/safety.
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen/CodeGen.hs:1548:        -- This should actually compile to only about 3 asm instructions.
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen/CodeGen.hs-1549-        isSMulOK :: Width -> CmmExpr -> CmmExpr -> LlvmM ExprData
##############################################
ghc-8.10.2/compiler/llvmGen/Llvm/AbsSyn.hs-343-  -}
ghc-8.10.2/compiler/llvmGen/Llvm/AbsSyn.hs:344:  | Asm LMString LMString LlvmType [LlvmVar] Bool Bool
ghc-8.10.2/compiler/llvmGen/Llvm/AbsSyn.hs-345-
##############################################
ghc-8.10.2/compiler/llvmGen/Llvm/PpLlvm.hs-243-        Phi        tp predecessors  -> ppPhi tp predecessors
ghc-8.10.2/compiler/llvmGen/Llvm/PpLlvm.hs:244:        Asm        asm c ty v se sk -> ppAsm asm c ty v se sk
ghc-8.10.2/compiler/llvmGen/Llvm/PpLlvm.hs-245-        MExpr      meta expr        -> ppMetaExpr meta expr
##############################################
ghc-8.10.2/compiler/llvmGen/Llvm/PpLlvm.hs-440-
ghc-8.10.2/compiler/llvmGen/Llvm/PpLlvm.hs:441:ppAsm :: LMString -> LMString -> LlvmType -> [LlvmVar] -> Bool -> Bool -> SDoc
ghc-8.10.2/compiler/llvmGen/Llvm/PpLlvm.hs:442:ppAsm asm constraints rty vars sideeffect alignstack =
ghc-8.10.2/compiler/llvmGen/Llvm/PpLlvm.hs-443-  let asm'  = doubleQuotes $ ftext asm
##############################################
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen.hs-5---
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen.hs:6:module LlvmCodeGen ( LlvmVersion, llvmVersionList, llvmCodeGen, llvmFixupAsm ) where
ghc-8.10.2/compiler/llvmGen/LlvmCodeGen.hs-7-
##############################################
ghc-8.10.2/compiler/basicTypes/MkId.hs-619-
ghc-8.10.2/compiler/basicTypes/MkId.hs:620:If the wrapper `$WFoo` is not inlined, we get a fruitless reboxing of `i`.
ghc-8.10.2/compiler/basicTypes/MkId.hs-621-But if we inline the wrapper, we get
##############################################
ghc-8.10.2/compiler/basicTypes/Literal.hs-847-
ghc-8.10.2/compiler/basicTypes/Literal.hs:848:  In ByteCodeAsm we just lower it as a 0 literal, because
ghc-8.10.2/compiler/basicTypes/Literal.hs-849-  it's all boxed and lifted to the host GC anyway.
##############################################
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs-376-a variable mentioned in the type of the hole. For hole `_a`, we will then
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs:377:only require that the `$dShow_a1pp` constraint is solved, since that is
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs-378-the only non-hole constraint that mentions any free type variables mentioned in
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs-379-the hole constraint for `_a`, namely `a_a1pd[tau:2]` , and similarly for the
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs:380:hole `_b` we only require that the `$dShow_a1pe` constraint is solved.
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs-381-
##############################################
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs-642-    mkRefTy refLvl = (wrapWithVars &&& id) <$> newTyVars
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs:643:      where newTyVars = replicateM refLvl $ setLvl <$>
ghc-8.10.2/compiler/typecheck/TcHoleErrors.hs-644-                            (newOpenTypeKind >>= newFlexiTyVar)
##############################################
ghc-8.10.2/compiler/typecheck/TcForeign.hs-499-checkCOrAsmOrLlvm HscC    = IsValid
ghc-8.10.2/compiler/typecheck/TcForeign.hs:500:checkCOrAsmOrLlvm HscAsm  = IsValid
ghc-8.10.2/compiler/typecheck/TcForeign.hs-501-checkCOrAsmOrLlvm HscLlvm = IsValid
##############################################
ghc-8.10.2/compiler/typecheck/TcForeign.hs-506-checkCOrAsmOrLlvmOrInterp HscC           = IsValid
ghc-8.10.2/compiler/typecheck/TcForeign.hs:507:checkCOrAsmOrLlvmOrInterp HscAsm         = IsValid
ghc-8.10.2/compiler/typecheck/TcForeign.hs-508-checkCOrAsmOrLlvmOrInterp HscLlvm        = IsValid
##############################################
ghc-8.10.2/compiler/typecheck/TcGenFunctor.hs-127-be mapped, `f`, is a function on the code level, not on the meta level,
ghc-8.10.2/compiler/typecheck/TcGenFunctor.hs:128:so it was eta expanded to `\x -> [| f $x |]`. This resulted in too much eta expansion.
ghc-8.10.2/compiler/typecheck/TcGenFunctor.hs-129-It is better to produce too many lambdas than to eta expand, see ticket #7436.
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-7--- | ByteCodeLink: Bytecode assembler and linker
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:8:module ByteCodeAsm (
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-9-        assembleBCOs, assembleOneBCO,
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-164-  -- pass 1: collect up the offsets of the local labels.
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:165:  let asm = mapM_ (assembleI dflags) instrs
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-166-
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-176-      -- this BCO to be long.
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:177:      (n_insns0, lbl_map0) = inspectAsm dflags False initial_offset asm
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-178-      ((n_insns, lbl_map), long_jumps)
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:179:        | isLarge n_insns0 = (inspectAsm dflags True initial_offset asm, True)
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-180-        | otherwise = ((n_insns0, lbl_map0), False)
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-188-  let initial_state = (emptySS, emptySS, emptySS)
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:189:  (final_insns, final_lits, final_ptrs) <- flip execStateT initial_state $ runAsm dflags long_jumps env asm
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-190-
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-229-  | Emit Word16 [Operand] (Assembler a)
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:230:  | NullAsm a
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-231-  deriving (Functor)
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-237-instance Monad Assembler where
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:238:  NullAsm x >>= f = f x
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-239-  AllocPtr p k >>= f = AllocPtr p (k >=> f)
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-267-
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:268:runAsm :: DynFlags -> Bool -> LabelEnv -> Assembler a -> StateT AsmState IO a
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:269:runAsm dflags long_jumps e = go
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-270-  where
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:271:    go (NullAsm x) = return x
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-272-    go (AllocPtr p_io k) = do
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-307-
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:308:inspectAsm :: DynFlags -> Bool -> Word -> Assembler a -> (Word, LabelEnvMap)
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:309:inspectAsm dflags long_jumps initial_offset
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-310-  = go (InspectState initial_offset 0 0 Map.empty)
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-311-  where
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:312:    go s (NullAsm _) = (instrCount s, lblEnv s)
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-313-    go s (AllocPtr _ k) = go (s { ptrCount = n + 1 }) (k n)
##############################################
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-470-    litlabel fs = lit [BCONPtrLbl fs]
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs:471:    addr (RemotePtr a) = words [fromIntegral a]
ghc-8.10.2/compiler/ghci/ByteCodeAsm.hs-472-    float = words . mkLitF
##############################################
ghc-8.10.2/compiler/parser/Parser.y.source-875-        : expdoclist export expdoclist ',' exportlist1
ghc-8.10.2/compiler/parser/Parser.y.source:876:                          {% (addAnnotation (oll ($1 `appOL` $2 `appOL` $3))
ghc-8.10.2/compiler/parser/Parser.y.source-877-                                            AnnComma (gl $4) ) >>
ghc-8.10.2/compiler/parser/Parser.y.source:878:                              return ($1 `appOL` $2 `appOL` $3 `appOL` $5) }
ghc-8.10.2/compiler/parser/Parser.y.source:879:        | expdoclist export expdoclist             { $1 `appOL` $2 `appOL` $3 }
ghc-8.10.2/compiler/parser/Parser.y.source-880-        | expdoclist                               { $1 }
##############################################
ghc-8.10.2/compiler/parser/Parser.hs-2343-    token_strs_expected
ghc-8.10.2/compiler/parser/Parser.hs:2344:  where token_strs = ["error","%dummy","%start_parseModule","%start_parseSignature","%start_parseImport","%start_parseStatement","%start_parseDeclaration","%start_parseExpression","%start_parsePattern","%start_parseTypeSignature","%start_parseStmt","%start_parseIdentifier","%start_parseType","%start_parseBackpack","%start_parseHeader","identifier","backpack","units","unit","unitid","msubsts","msubst","moduleid","pkgname","litpkgname_segment","litpkgname","mayberns","rns","rn","unitbody","unitdecls","unitdecl","signature","module","maybedocheader","missing_module_keyword","implicit_top","maybemodwarning","body","body2","top","top1","header","header_body","header_body2","header_top","header_top_importdecls","maybeexports","exportlist","exportlist1","expdoclist","exp_doc","export","export_subspec","qcnames","qcnames1","qcname_ext_w_wildcard","qcname_ext","qcname","semis1","semis","importdecls","importdecls_semi","importdecl","maybe_src","maybe_safe","maybe_pkg","optqualified","maybeas","maybeimpspec","impspec","prec","infix","ops","topdecls","topdecls_semi","topdecl","cl_decl","ty_decl","standalone_kind_sig","sks_vars","inst_decl","overlap_pragma","deriv_strategy_no_via","deriv_strategy_via","deriv_standalone_strategy","opt_injective_info","injectivity_cond","inj_varids","where_type_family","ty_fam_inst_eqn_list","ty_fam_inst_eqns","ty_fam_inst_eqn","at_decl_cls","opt_family","opt_instance","at_decl_inst","data_or_newtype","opt_kind_sig","opt_datafam_kind_sig","opt_tyfam_kind_sig","opt_at_kind_inj_sig","tycl_hdr","tycl_hdr_inst","capi_ctype","stand_alone_deriving","role_annot","maybe_roles","roles","role","pattern_synonym_decl","pattern_synonym_lhs","vars0","cvars1","where_decls","pattern_synonym_sig","decl_cls","decls_cls","decllist_cls","where_cls","decl_inst","decls_inst","decllist_inst","where_inst","decls","decllist","binds","wherebinds","rules","rule","rule_activation","rule_explicit_activation","rule_foralls","rule_vars","rule_var","warnings","warning","deprecations","deprecation","strings","stringlist","annotation","fdecl","callconv","safety","fspec","opt_sig","opt_tyconsig","sigtype","sigtypedoc","sig_vars","sigtypes1","unpackedness","forall_vis_flag","ktype","ktypedoc","ctype","ctypedoc","context","constr_context","type","typedoc","constr_btype","constr_tyapps","constr_tyapp","btype","tyapps","tyapp","atype","inst_type","deriv_types","comma_types0","comma_types1","bar_types2","tv_bndrs","tv_bndr","fds","fds1","fd","varids0","kind","gadt_constrlist","gadt_constrs","gadt_constr_with_doc","gadt_constr","constrs","constrs1","constr","forall","constr_stuff","fielddecls","fielddecls1","fielddecl","maybe_derivings","derivings","deriving","deriv_clause_types","docdecl","docdecld","decl_no_th","decl","rhs","gdrhs","gdrh","sigdecl","activation","explicit_activation","quasiquote","exp","infixexp","infixexp_top","exp10_top","exp10","optSemi","scc_annot","hpc_annot","fexp","aexp","aexp1","aexp2","splice_exp","splice_untyped","splice_typed","cmdargs","acmd","cvtopbody","cvtopdecls0","texp","tup_exprs","commas_tup_tail","tup_tail","list","lexps","flattenedpquals","pquals","squals","transformqual","guardquals","guardquals1","altslist","alts","alts1","alt","alt_rhs","ralt","gdpats","ifgdpats","gdpat","pat","bindpat","apat","apats","stmtlist","stmts","maybe_stmt","e_stmt","stmt","qual","fbinds","fbinds1","fbind","dbinds","dbind","ipvar","overloaded_label","name_boolformula_opt","name_boolformula","name_boolformula_and","name_boolformula_and_list","name_boolformula_atom","namelist","name_var","qcon_nowiredlist","qcon","gen_qcon","con","con_list","sysdcon_nolist","sysdcon","conop","qconop","gtycon","ntgtycon","oqtycon","oqtycon_no_varcon","qtyconop","qtycon","qtycondoc","tycon","qtyconsym","tyconsym","op","varop","qop","qopm","hole_op","qvarop","qvaropm","tyvar","tyvarop","tyvarid","var","qvar","qvarid","varid","qvarsym","qvarsym_no_minus","qvarsym1","varsym","varsym_no_minus","special_id","special_sym","qconid","conid","qconsym","consym","literal","close","modid","commas","bars0","bars","docnext","docprev","docnamed","docsection","moduleheader","maybe_docprev","maybe_docnext","'_'","'as'","'case'","'class'","'data'","'default'","'deriving'","'do'","'else'","'hiding'","'if'","'import'","'in'","'infix'","'infixl'","'infixr'","'instance'","'let'","'module'","'newtype'","'of'","'qualified'","'then'","'type'","'where'","'forall'","'foreign'","'export'","'label'","'dynamic'","'safe'","'interruptible'","'unsafe'","'mdo'","'family'","'role'","'stdcall'","'ccall'","'capi'","'prim'","'javascript'","'proc'","'rec'","'group'","'by'","'using'","'pattern'","'static'","'stock'","'anyclass'","'via'","'unit'","'signature'","'dependency'","'{-# INLINE'","'{-# SPECIALISE'","'{-# SPECIALISE_INLINE'","'{-# SOURCE'","'{-# RULES'","'{-# CORE'","'{-# SCC'","'{-# GENERATED'","'{-# DEPRECATED'","'{-# WARNING'","'{-# UNPACK'","'{-# NOUNPACK'","'{-# ANN'","'{-# MINIMAL'","'{-# CTYPE'","'{-# OVERLAPPING'","'{-# OVERLAPPABLE'","'{-# OVERLAPS'","'{-# INCOHERENT'","'{-# COMPLETE'","'#-}'","'..'","':'","'::'","'='","'\\\\'","'lcase'","'|'","'<-'","'->'","'@'","'~'","'=>'","'-'","'!'","'*'","'-<'","'>-'","'-<<'","'>>-'","'.'","TYPEAPP","'{'","'}'","vocurly","vccurly","'['","']'","'[:'","':]'","'('","')'","'(#'","'#)'","'(|'","'|)'","';'","','","'`'","SIMPLEQUOTE","VARID","CONID","VARSYM","CONSYM","QVARID","QCONID","QVARSYM","QCONSYM","IPDUPVARID","LABELVARID","CHAR","STRING","INTEGER","RATIONAL","PRIMCHAR","PRIMSTRING","PRIMINTEGER","PRIMWORD","PRIMFLOAT","PRIMDOUBLE","DOCNEXT","DOCPREV","DOCNAMED","DOCSECTION","'[|'","'[p|'","'[t|'","'[d|'","'|]'","'[||'","'||]'","TH_ID_SPLICE","'$('","TH_ID_TY_SPLICE","'$$('","TH_TY_QUOTE","TH_QUASIQUOTE","TH_QQUASIQUOTE","%eof"]
ghc-8.10.2/compiler/parser/Parser.hs-2345-        bit_start = st * 482
##############################################
ghc-8.10.2/compiler/parser/Parser.hs-12905-
ghc-8.10.2/compiler/parser/Parser.hs:12906:indexShortOffAddr (HappyA# arr) off =
ghc-8.10.2/compiler/parser/Parser.hs-12907-        Happy_GHC_Exts.narrow16Int# i
##############################################
ghc-8.10.2/compiler/parser/Lexer.hs-3325-{-# INLINE alexIndexInt16OffAddr #-}
ghc-8.10.2/compiler/parser/Lexer.hs:3326:alexIndexInt16OffAddr (AlexA# arr) off =
ghc-8.10.2/compiler/parser/Lexer.hs-3327-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/compiler/parser/Lexer.hs-3342-{-# INLINE alexIndexInt32OffAddr #-}
ghc-8.10.2/compiler/parser/Lexer.hs:3343:alexIndexInt32OffAddr (AlexA# arr) off =
ghc-8.10.2/compiler/parser/Lexer.hs-3344-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-1553-  ncg = case hscTarget dflags of
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs:1554:           HscAsm -> True
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-1555-           _      -> False
##############################################
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-1964-   = do dflags <- getDynFlags
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs:1965:        mkBasicIndexedRead (arrPtrsHdrSize dflags) Nothing (gcWord dflags) res addr (gcWord dflags) idx
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-1966-
##############################################
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-2003-       mkBasicIndexedWrite hdr_size Nothing addr ty idx val
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs:2004:       emit (setInfo addr (CmmLit (CmmLabel mkMAP_DIRTY_infoLabel)))
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-2005-       -- the write barrier.  We must write a byte into the mark table:
##############################################
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-2307-  =  do dflags <- getDynFlags
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs:2308:        mkBasicPrefetch locality 0 addr  (CmmLit (CmmInt 0 (wordWidth dflags)))
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-2309-doPrefetchValueOp _ _
##############################################
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-2803-    mkBasicIndexedWrite (smallArrPtrsHdrSize dflags) Nothing addr ty idx val
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs:2804:    emit (setInfo addr (CmmLit (CmmLabel mkSMAP_DIRTY_infoLabel)))
ghc-8.10.2/compiler/GHC/StgToCmm/Prim.hs-2805-
##############################################
ghc-8.10.2/compiler/GHC/StgToCmm/CgUtils.hs-172-                        BaseReg -> baseAddr
ghc-8.10.2/compiler/GHC/StgToCmm/CgUtils.hs:173:                        _other  -> CmmLoad baseAddr (globalRegType dflags reg)
ghc-8.10.2/compiler/GHC/StgToCmm/CgUtils.hs-174-
##############################################
ghc-8.10.2/compiler/GHC/HsToCore/PmCheck/Oracle.hs-1400-
ghc-8.10.2/compiler/GHC/HsToCore/PmCheck/Oracle.hs:1401:  newtype Chasm = MkChasm Chasm
ghc-8.10.2/compiler/GHC/HsToCore/PmCheck/Oracle.hs:1402:  gazeIntoTheChasm :: Chasm -> a
ghc-8.10.2/compiler/GHC/HsToCore/PmCheck/Oracle.hs:1403:  gazeIntoTheChasm x = case x of {} -- Erroneously warned as non-exhaustive
ghc-8.10.2/compiler/GHC/HsToCore/PmCheck/Oracle.hs-1404-
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs-603-
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs:604:    lookupAddr (ImmAddr imm off) = ImmAddr imm off
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs:605:    lookupAddr (AddrBaseIndex base index disp)
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs-606-      = ((AddrBaseIndex $! lookupBase base) $! lookupIndex index) disp
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs-671-           RcInteger   -> MOV (archWordFormat is32Bit)
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs:672:                              (OpReg reg) (OpAddr (spRel dflags off))
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs:673:           RcDouble    -> MOV FF64 (OpReg reg) (OpAddr (spRel dflags off))
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs-674-           _         -> panic "X86.mkSpillInstr: no match"
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs-690-              RcInteger -> MOV (archWordFormat is32Bit)
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs:691:                               (OpAddr (spRel dflags off)) (OpReg reg)
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs:692:              RcDouble  -> MOV FF64 (OpAddr (spRel dflags off)) (OpReg reg)
ghc-8.10.2/compiler/nativeGen/X86/Instr.hs-693-              _           -> panic "X86.x86_mkLoadInstr"
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-437-pprAddr :: AddrMode -> SDoc
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs:438:pprAddr (ImmAddr imm off)
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-439-  = let pp_imm = pprImm imm
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-447-
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs:448:pprAddr (AddrBaseIndex base index displacement)
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-449-  = sdocWithPlatform $ \platform ->
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-644--- in the code generation.
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs:645:pprInstr (LEA format (OpAddr (AddrBaseIndex (EABaseReg reg1) (EAIndex reg2 1) (ImmInt 0))) dst@(OpReg reg3))
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-646-  | reg1 == reg3
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-648-
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs:649:pprInstr (LEA format (OpAddr (AddrBaseIndex (EABaseReg reg1) (EAIndex reg2 1) (ImmInt 0))) dst@(OpReg reg3))
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-650-  | reg2 == reg3
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-652-
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs:653:pprInstr (LEA format (OpAddr (AddrBaseIndex (EABaseReg reg1) EAIndexNone displ)) dst@(OpReg reg3))
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-654-  | reg1 == reg3
##############################################
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-854-pprX87Instr :: Instr -> SDoc
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs:855:pprX87Instr (X87Store fmt  dst) = pprFormatAddr (sLit "gst") fmt  dst
ghc-8.10.2/compiler/nativeGen/X86/Ppr.hs-856-pprX87Instr _ = panic "X86.Ppr.pprX87Instr: no match"
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-511-        mov_lo = MOV II32 (OpReg rlo) (OpAddr addr)
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:512:        mov_hi = MOV II32 (OpReg rhi) (OpAddr (fromJust (addrOffset addr 4)))
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-513-  return (vcode `appOL` addr_code `snocOL` mov_lo `snocOL` mov_hi)
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-549-        mov_lo = MOV II32 (OpAddr addr) (OpReg rlo)
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:550:        mov_hi = MOV II32 (OpAddr (fromJust (addrOffset addr 4))) (OpReg rhi)
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-551-   return (
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-759-      return $ Any II64 (\dst -> unitOL $
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:760:        LEA II64 (OpAddr (ripRel (litToImm displacement))) (OpReg dst))
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-761-
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-1078-                 LEA format
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:1079:                        (OpAddr (AddrBaseIndex (EABaseReg x_reg) EAIndexNone imm))
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-1080-                        (OpReg dst)
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-1315-getAmode' is32Bit (CmmLit lit) | is32BitLit is32Bit lit
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:1316:  = return (Amode (ImmAddr (litToImm lit) 0) nilOL)
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-1317-
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-1700--- address.
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:1701:assignMem_IntCode pk addr (CmmMachOp op [CmmLoad addr2 _,
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-1702-                                                 CmmLit (CmmInt i _)])
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3166-                            DELTA (delta-arg_size),
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:3167:                            MOV (floatFormat width) (OpReg arg_reg) (OpAddr (spRel dflags 0))]
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3168-             push_args rest code'
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3332-        (tableReg,t_code) <- getSomeReg $ dynRef
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:3333:        let op = OpAddr (AddrBaseIndex (EABaseReg tableReg)
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3334-                                       (EAIndex reg (wORD_SIZE dflags)) (ImmInt 0))
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3358-        lbl <- getNewLabelNat
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:3359:        let op = OpAddr (AddrBaseIndex EABaseNone (EAIndex reg (wORD_SIZE dflags)) (ImmCLbl lbl))
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3360-            code = e_code `appOL` toOL [
##############################################
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3770-      -- We have enough information to check if we can perform the inversion
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs:3771:      -- TODO: We could also check for the last asm instruction which sets
ghc-8.10.2/compiler/nativeGen/X86/CodeGen.hs-3772-      -- status flags instead. Which I suspect is worse in terms of compiler
##############################################
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs-268-
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs:269:    regAddr (AddrRegReg r1 r2)  = [r1, r2]
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs:270:    regAddr (AddrRegImm r1 _)   = [r1]
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs-271-
##############################################
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs-331-  where
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs:332:    fixAddr (AddrRegReg r1 r2)  = AddrRegReg   (env r1) (env r2)
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs:333:    fixAddr (AddrRegImm r1 i)   = AddrRegImm   (env r1) i
ghc-8.10.2/compiler/nativeGen/SPARC/Instr.hs-334-
##############################################
ghc-8.10.2/compiler/nativeGen/SPARC/Ppr.hs-171---   object code. This function is called quite a lot when emitting
ghc-8.10.2/compiler/nativeGen/SPARC/Ppr.hs:172:--   the asm file..
ghc-8.10.2/compiler/nativeGen/SPARC/Ppr.hs-173---
##############################################
ghc-8.10.2/compiler/nativeGen/CFG.hs-151--- some information which would otherwise be lost during the
ghc-8.10.2/compiler/nativeGen/CFG.hs:152:-- Cmm <-> asm transition.
ghc-8.10.2/compiler/nativeGen/CFG.hs-153--- See also Note [Inverting Conditional Branches]
##############################################
ghc-8.10.2/compiler/nativeGen/BlockLayout.hs-58-    on how important they are.
ghc-8.10.2/compiler/nativeGen/BlockLayout.hs:59:  * After we convert Cmm to Asm we run `optimizeCFG` which
ghc-8.10.2/compiler/nativeGen/BlockLayout.hs-60-    adds a few more "educated guesses" to the equation.
##############################################
ghc-8.10.2/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs-87-                                 original  folding   hackFold  lazyFold
ghc-8.10.2/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs:88: -O -fasm (used everywhere)      31.509s   30.387s   30.791s   30.603s
ghc-8.10.2/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs-89-                                 100.00%   96.44%    97.72%    97.12%
##############################################
ghc-8.10.2/compiler/nativeGen/AsmCodeGen.hs-507-        dumpIfSet_dyn dflags
ghc-8.10.2/compiler/nativeGen/AsmCodeGen.hs:508:                Opt_D_dump_asm "Asm code"
ghc-8.10.2/compiler/nativeGen/AsmCodeGen.hs-509-                sdoc
##############################################
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-387-                          (filter (interesting platform) dst)
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs:388:    regAddr (AddrRegReg r1 r2) = [r1, r2]
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs:389:    regAddr (AddrRegImm r1 _)  = [r1]
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-390-
##############################################
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-483-  where
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs:484:    fixAddr (AddrRegReg r1 r2) = AddrRegReg (env r1) (env r2)
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs:485:    fixAddr (AddrRegImm r1 i)  = AddrRegImm (env r1) i
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-486-
##############################################
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-692-
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs:693:        handleBlock addr (BasicBlock id instrs)
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-694-                = BasicBlock id (zipWith makeFar [addr..] instrs)
##############################################
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-696-        makeFar _ (BCC ALWAYS tgt _) = BCC ALWAYS tgt Nothing
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs:697:        makeFar addr (BCC cond tgt p)
ghc-8.10.2/compiler/nativeGen/PPC/Instr.hs-698-            | abs (addr - targetAddr) >= nearLimit
##############################################
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs-250-pprAddr :: AddrMode -> SDoc
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs:251:pprAddr (AddrRegReg r1 r2)
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs-252-  = pprReg r1 <> char ',' <+> pprReg r2
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs:253:pprAddr (AddrRegImm r1 (ImmInt i))
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs-254-  = hcat [ int i, char '(', pprReg r1, char ')' ]
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs:255:pprAddr (AddrRegImm r1 (ImmInteger i))
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs-256-  = hcat [ integer i, char '(', pprReg r1, char ')' ]
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs:257:pprAddr (AddrRegImm r1 imm)
ghc-8.10.2/compiler/nativeGen/PPC/Ppr.hs-258-  = hcat [ pprImm imm, char '(', pprReg r1, char ')' ]
##############################################
ghc-8.10.2/compiler/types/Type.hs-2825-    go (ForAllTy (Bndr tv _) ty)
ghc-8.10.2/compiler/types/Type.hs:2826:      = ((`delVarSet` tv) <$> go ty) `mappend`
ghc-8.10.2/compiler/types/Type.hs-2827-        (invisible (tyCoVarsOfType $ varType tv))
##############################################
ghc-8.10.2/compiler/main/SysTools/Tasks.hs-135-          LangObjcxx -> ("objective-c++", userOpts_cxx)
ghc-8.10.2/compiler/main/SysTools/Tasks.hs:136:          LangAsm    -> ("assembler",     [])
ghc-8.10.2/compiler/main/SysTools/Tasks.hs-137-          RawObject  -> ("c",             []) -- claim C for lack of a better idea
##############################################
ghc-8.10.2/compiler/main/GhcMake.hs-1547-
ghc-8.10.2/compiler/main/GhcMake.hs:1548:            -- If OPTIONS_GHC contains -fasm or -fllvm, be careful that
ghc-8.10.2/compiler/main/GhcMake.hs-1549-            -- we don't do anything dodgy: these should only work to change
ghc-8.10.2/compiler/main/GhcMake.hs:1550:            -- from -fllvm to -fasm and vice-versa, or away from -fno-code,
ghc-8.10.2/compiler/main/GhcMake.hs-1551-            -- otherwise we could end up trying to link object code to byte
##############################################
ghc-8.10.2/compiler/main/DynFlags.hs-1542-  = HscC           -- ^ Generate C code.
ghc-8.10.2/compiler/main/DynFlags.hs:1543:  | HscAsm         -- ^ Generate assembly using the native code generator.
ghc-8.10.2/compiler/main/DynFlags.hs-1544-  | HscLlvm        -- ^ Generate assembly using the llvm code generator.
##############################################
ghc-8.10.2/compiler/main/DynFlags.hs-1551-isObjectTarget HscC     = True
ghc-8.10.2/compiler/main/DynFlags.hs:1552:isObjectTarget HscAsm   = True
ghc-8.10.2/compiler/main/DynFlags.hs-1553-isObjectTarget HscLlvm  = True
##############################################
ghc-8.10.2/compiler/main/DynFlags.hs-5320--- Changes the target only if we're compiling object code.  This is
ghc-8.10.2/compiler/main/DynFlags.hs:5321:-- used by -fasm and -fllvm, which switch from one to the other, but
ghc-8.10.2/compiler/main/DynFlags.hs-5322--- not from bytecode to object-code.  The idea is that -fasm/-fllvm
##############################################
ghc-8.10.2/compiler/main/DynFlags.hs-5692-    = if platformMisc_ghcWithNativeCodeGen $ platformMisc dflags
ghc-8.10.2/compiler/main/DynFlags.hs:5693:      then let dflags' = dflags { hscTarget = HscAsm }
ghc-8.10.2/compiler/main/DynFlags.hs-5694-               warn = "Compiler not unregisterised, so using native code generator rather than compiling via C"
##############################################
ghc-8.10.2/compiler/main/DynFlags.hs-5706-           "Compiler unregisterised, so compiling via C"
ghc-8.10.2/compiler/main/DynFlags.hs:5707: | hscTarget dflags == HscAsm &&
ghc-8.10.2/compiler/main/DynFlags.hs-5708-   not (platformMisc_ghcWithNativeCodeGen $ platformMisc dflags)
##############################################
ghc-8.10.2/compiler/main/DriverPipeline.hs-350-              LangObjcxx -> Cobjcxx
ghc-8.10.2/compiler/main/DriverPipeline.hs:351:              LangAsm    -> As True -- allow CPP
ghc-8.10.2/compiler/main/DriverPipeline.hs-352-              RawObject  -> panic "compileForeign: should be unreachable"
##############################################
ghc-8.10.2/compiler/main/DriverPipeline.hs-746-        -- eg. it might happen if the -C flag is used on a source file that
ghc-8.10.2/compiler/main/DriverPipeline.hs:747:        -- has {-# OPTIONS -fasm #-}.
ghc-8.10.2/compiler/main/DriverPipeline.hs-748-     -> panic ("pipeLoop: at phase " ++ show realPhase ++
##############################################
ghc-8.10.2/compiler/main/DriverPipeline.hs-925--- what the rest of the phases will be until part-way through the
ghc-8.10.2/compiler/main/DriverPipeline.hs:926:-- compilation: for example, an {-# OPTIONS -fasm #-} at the beginning
ghc-8.10.2/compiler/main/DriverPipeline.hs-927--- of a source file can change the latter stages of the pipeline from
##############################################
ghc-8.10.2/compiler/main/DriverPipeline.hs-1540-      output_fn <- phaseOutputFilename next_phase
ghc-8.10.2/compiler/main/DriverPipeline.hs:1541:      liftIO $ llvmFixupAsm dflags input_fn output_fn
ghc-8.10.2/compiler/main/DriverPipeline.hs-1542-      return (RealPhase next_phase, output_fn)
##############################################
ghc-8.10.2/compiler/main/DriverPipeline.hs-2206-        HscC           -> HCc
ghc-8.10.2/compiler/main/DriverPipeline.hs:2207:        HscAsm         -> As False
ghc-8.10.2/compiler/main/DriverPipeline.hs-2208-        HscLlvm        -> LlvmOpt
##############################################
ghc-8.10.2/compiler/main/HscMain.hs-1444-        -- The back-end is streamed: each top-level function goes
ghc-8.10.2/compiler/main/HscMain.hs:1445:        -- from Stg all the way to asm before dealing with the next
ghc-8.10.2/compiler/main/HscMain.hs-1446-        -- top-level function, so showPass isn't very useful here.
##############################################
ghc-8.10.2/compiler/main/CodeOutput.hs-92-        ; a <- case hscTarget dflags of
ghc-8.10.2/compiler/main/CodeOutput.hs:93:                 HscAsm         -> outputAsm dflags this_mod location filenm
ghc-8.10.2/compiler/main/CodeOutput.hs-94-                                             linted_cmm_stream
##############################################
ghc-8.10.2/compiler/main/CodeOutput.hs-152-
ghc-8.10.2/compiler/main/CodeOutput.hs:153:outputAsm :: DynFlags -> Module -> ModLocation -> FilePath
ghc-8.10.2/compiler/main/CodeOutput.hs-154-          -> Stream IO RawCmmGroup a
ghc-8.10.2/compiler/main/CodeOutput.hs-155-          -> IO a
ghc-8.10.2/compiler/main/CodeOutput.hs:156:outputAsm dflags this_mod location filenm cmm_stream
ghc-8.10.2/compiler/main/CodeOutput.hs-157- | platformMisc_ghcWithNativeCodeGen $ platformMisc dflags
##############################################
ghc-8.10.2/compiler/main/CodeOutput.hs-159-
ghc-8.10.2/compiler/main/CodeOutput.hs:160:       debugTraceMsg dflags 4 (text "Outputing asm to" <+> text filenm)
ghc-8.10.2/compiler/main/CodeOutput.hs-161-
##############################################
ghc-8.10.2/compiler/utils/Encoding.hs-209-string into a string that is acceptable as a C name.  This is done
ghc-8.10.2/compiler/utils/Encoding.hs:210:right before we emit a symbol name into the compiled C or asm code.
ghc-8.10.2/compiler/utils/Encoding.hs-211-Z-encoding of strings is cached in the FastString interface, so we
##############################################
ghc-8.10.2/compiler/coreSyn/CoreOpt.hs-898-
ghc-8.10.2/compiler/coreSyn/CoreOpt.hs:899:If `exprIsConApp_maybe` is trying to analyse `$MkT arg`, upon unfolding of $MkT,
ghc-8.10.2/compiler/coreSyn/CoreOpt.hs-900-it will see
##############################################
ghc-8.10.2/compiler/coreSyn/CoreUtils.hs-2283-locBind loc b1 b2 diffs = map addLoc diffs
ghc-8.10.2/compiler/coreSyn/CoreUtils.hs:2284:  where addLoc d            = d $$ nest 2 (parens (text loc <+> bindLoc))
ghc-8.10.2/compiler/coreSyn/CoreUtils.hs-2285-        bindLoc | b1 == b2  = ppr b1
##############################################
ghc-8.10.2/compiler/prelude/TysWiredIn.hs-728-
ghc-8.10.2/compiler/prelude/TysWiredIn.hs:729:Unless Unit has a known key, the type of `$( tupE [ [| "ok" |] ] )` (an
ghc-8.10.2/compiler/prelude/TysWiredIn.hs-730-ExplicitTuple of length 1) will not match the type of Unit (an ordinary
##############################################
ghc-8.10.2/compiler/prelude/PrelRules.hs-1876-     v :+: w
ghc-8.10.2/compiler/prelude/PrelRules.hs:1877:      | w `cheapEqExpr` v          -> return $ mkL 2       `mul` v
ghc-8.10.2/compiler/prelude/PrelRules.hs-1878-     w :+: (y :**: v)
ghc-8.10.2/compiler/prelude/PrelRules.hs:1879:      | w `cheapEqExpr` v          -> return $ mkL (1+y)   `mul` v
ghc-8.10.2/compiler/prelude/PrelRules.hs-1880-     w :-: (y :**: v)
ghc-8.10.2/compiler/prelude/PrelRules.hs:1881:      | w `cheapEqExpr` v          -> return $ mkL (1-y)   `mul` v
ghc-8.10.2/compiler/prelude/PrelRules.hs-1882-     (y :**: v) :+: w
ghc-8.10.2/compiler/prelude/PrelRules.hs:1883:      | w `cheapEqExpr` v          -> return $ mkL (y+1)   `mul` v
ghc-8.10.2/compiler/prelude/PrelRules.hs-1884-     (y :**: v) :-: w
ghc-8.10.2/compiler/prelude/PrelRules.hs:1885:      | w `cheapEqExpr` v          -> return $ mkL (y-1)   `mul` v
ghc-8.10.2/compiler/prelude/PrelRules.hs-1886-     (x :**: w) :+: (y :**: v)
ghc-8.10.2/compiler/prelude/PrelRules.hs:1887:      | w `cheapEqExpr` v          -> return $ mkL (x+y)   `mul` v
ghc-8.10.2/compiler/prelude/PrelRules.hs-1888-     (x :**: w) :-: (y :**: v)
ghc-8.10.2/compiler/prelude/PrelRules.hs:1889:      | w `cheapEqExpr` v          -> return $ mkL (x-y)   `mul` v
ghc-8.10.2/compiler/prelude/PrelRules.hs-1890-
##############################################
ghc-8.10.2/compiler/specialise/Specialise.hs-1471-[dEqA :-> dEqT1, dShowA :-> $dfShow dShowT2], but this duplicates
ghc-8.10.2/compiler/specialise/Specialise.hs:1472:work, since `$dfShow dShowT2` is a function application. Therefore, we
ghc-8.10.2/compiler/specialise/Specialise.hs-1473-also want to *float the dictionary out* (via bindAuxiliaryDict),
##############################################
ghc-8.10.2/utils/hsc2hs/ATTParser.hs:1:-- A rather crude asm parser.
ghc-8.10.2/utils/hsc2hs/ATTParser.hs-2---
##############################################
ghc-8.10.2/utils/hsc2hs/ATTParser.hs-43-
ghc-8.10.2/utils/hsc2hs/ATTParser.hs:44:type ASM = [(String, Inst)]
ghc-8.10.2/utils/hsc2hs/ATTParser.hs-45-
##############################################
ghc-8.10.2/utils/hsc2hs/Main.hs-113-                     cCrossCompile = cCrossCompile configM,
ghc-8.10.2/utils/hsc2hs/Main.hs:114:                     cViaAsm       = cViaAsm configM,
ghc-8.10.2/utils/hsc2hs/Main.hs-115-                     cCrossSafe    = cCrossSafe configM,
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-274-               concatMap outFlagHeaderCProg flags ++
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:275:               concatMap (uncurry (outValidityCheck (cViaAsm config))) (zip input [0..])
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-276-    testLog ("checking for compilation errors") $ do
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-280-            runCompiler compiler
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:281:                        (["-S" | cViaAsm config ]++
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-282-                         ["-c",cFile,"-o",oFile]++
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-288-outValidityCheck :: Bool -> Token -> Int -> String
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:289:outValidityCheck viaAsm s@(Special pos key value) uniq =
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-290-    case key of
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-302-    checkValidConst value' = if viaAsm
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:303:                             then validConstTestViaAsm (show uniq) value' ++ "\n"
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-304-                             else "void _hsc2hs_test" ++ show uniq ++ "()\n{\n" ++ validConstTest value' ++ "}\n"
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-308-            Nothing -> ""
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:309:            Just (_,_,enums) | viaAsm ->
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:310:                concatMap (\(hName,cName) -> validConstTestViaAsm (fromMaybe "noKey" (ATT.trim `fmap` hName) ++ show uniq) cName) enums
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-311-            Just (_,_,enums) ->
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-317-    validConstTest value' = outCLine pos ++ "    {\n        static int test_array[(" ++ value' ++ ") > 0 ? 2 : 1];\n        (void)test_array;\n    }\n"
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:318:    validConstTestViaAsm name value' = outCLine pos ++ "\nextern long long _hsc2hs_test_" ++ name ++";\n"
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-319-                                                    ++ "long long _hsc2hs_test_" ++ name ++ " = (" ++ value' ++ ");\n"
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-379-        config <- testGetConfig
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:380:        int <- case cViaAsm config of
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-381-                 True -> runCompileAsmIntegerTest z
##############################################
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-604-                  (Just stdout)
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs:605:      asm <- liftTestIO $ ATT.parse sFile
ghc-8.10.2/utils/hsc2hs/CrossCodegen.hs-606-      return $ fromMaybe (error "Failed to extract integer") (ATT.lookupInteger k asm)
##############################################
ghc-8.10.2/utils/hsc2hs/Flags.hs-20-                     cCrossCompile :: Bool,
ghc-8.10.2/utils/hsc2hs/Flags.hs:21:                     cViaAsm :: Bool,
ghc-8.10.2/utils/hsc2hs/Flags.hs-22-                     cCrossSafe :: Bool,
##############################################
ghc-8.10.2/utils/hsc2hs/Flags.hs-44-                            cCrossCompile = False,
ghc-8.10.2/utils/hsc2hs/Flags.hs:45:                            cViaAsm       = False,
ghc-8.10.2/utils/hsc2hs/Flags.hs-46-                            cCrossSafe    = False,
##############################################
ghc-8.10.2/utils/hsc2hs/Flags.hs-83-        "activate cross-compilation mode",
ghc-8.10.2/utils/hsc2hs/Flags.hs:84:    Option [] ["via-asm"] (NoArg (withConfig $ setViaAsm True))
ghc-8.10.2/utils/hsc2hs/Flags.hs:85:        "use a crude asm parser to compute constants when cross compiling",
ghc-8.10.2/utils/hsc2hs/Flags.hs-86-    Option [] ["cross-safe"] (NoArg (withConfig $ setCrossSafe True))
##############################################
ghc-8.10.2/utils/hsc2hs/Flags.hs-130-
ghc-8.10.2/utils/hsc2hs/Flags.hs:131:setViaAsm :: Bool -> ConfigM Maybe -> ConfigM Maybe
ghc-8.10.2/utils/hsc2hs/Flags.hs:132:setViaAsm b c = c { cViaAsm = b }
ghc-8.10.2/utils/hsc2hs/Flags.hs-133-
##############################################
ghc-8.10.2/utils/hsc2hs/Spec.hs-8-main = hspec $ do
ghc-8.10.2/utils/hsc2hs/Spec.hs:9:  describe "asm parser" $ do
ghc-8.10.2/utils/hsc2hs/Spec.hs-10-    -- 64bit
##############################################
ghc-8.10.2/utils/genprimopcode/Parser.hs-1110-
ghc-8.10.2/utils/genprimopcode/Parser.hs:1111:indexShortOffAddr (HappyA# arr) off =
ghc-8.10.2/utils/genprimopcode/Parser.hs-1112-        Happy_GHC_Exts.narrow16Int# i
##############################################
ghc-8.10.2/utils/genprimopcode/Lexer.hs-519-{-# INLINE alexIndexInt16OffAddr #-}
ghc-8.10.2/utils/genprimopcode/Lexer.hs:520:alexIndexInt16OffAddr (AlexA# arr) off =
ghc-8.10.2/utils/genprimopcode/Lexer.hs-521-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/utils/genprimopcode/Lexer.hs-536-{-# INLINE alexIndexInt32OffAddr #-}
ghc-8.10.2/utils/genprimopcode/Lexer.hs:537:alexIndexInt32OffAddr (AlexA# arr) off =
ghc-8.10.2/utils/genprimopcode/Lexer.hs-538-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/utils/check-ppr/README-17-
ghc-8.10.2/utils/check-ppr/README:18:  $(CHECK_PPR) "`'$(TEST_HC)' $(TEST_HC_OPTS) --print-libdir | tr -d '\r'`" FileToParse.hs
ghc-8.10.2/utils/check-ppr/README-19-
##############################################
ghc-8.10.2/utils/hpc/HpcParser.hs-552-
ghc-8.10.2/utils/hpc/HpcParser.hs:553:indexShortOffAddr (HappyA# arr) off =
ghc-8.10.2/utils/hpc/HpcParser.hs-554-        Happy_GHC_Exts.narrow16Int# i
##############################################
ghc-8.10.2/utils/haddock/doc/markup.rst-398-The second example, using an export list with a section description
ghc-8.10.2/utils/haddock/doc/markup.rst:399:defined elsewhere (the ``$imageImporters``; see :ref:`named-chunks`):
ghc-8.10.2/utils/haddock/doc/markup.rst-400-::
##############################################
ghc-8.10.2/utils/haddock/doc/markup.rst-475-is still given using :ref:`named-chunks`. Unlike in the first example
ghc-8.10.2/utils/haddock/doc/markup.rst:476:when using an export list, the named chunk syntax ``$imageImporters``
ghc-8.10.2/utils/haddock/doc/markup.rst-477-*must* be used for the section documentation; attempting to use the
##############################################
ghc-8.10.2/utils/haddock/haddock-library/src/Documentation/Haddock/Parser/Monad.hs-64-                  Right (x,s) -> Right (s,x)
ghc-8.10.2/utils/haddock/haddock-library/src/Documentation/Haddock/Parser/Monad.hs:65:  where p' = (,) <$> p <*> Parsec.getState
ghc-8.10.2/utils/haddock/haddock-library/src/Documentation/Haddock/Parser/Monad.hs-66-
##############################################
ghc-8.10.2/utils/haddock/haddock-api/resources/html/js-src/details-helper.tsx-258-  const info = detailsRegistry[id];
ghc-8.10.2/utils/haddock/haddock-api/resources/html/js-src/details-helper.tsx:259:  if (info == undefined) { throw new Error(`could not find <details> element with id '${id}'`); }
ghc-8.10.2/utils/haddock/haddock-api/resources/html/js-src/details-helper.tsx-260-  return info;
##############################################
ghc-8.10.2/utils/completion/ghc.bash-26-{
ghc-8.10.2/utils/completion/ghc.bash:27:  local completions=`$1 --show-options`
ghc-8.10.2/utils/completion/ghc.bash-28-  local cur="${COMP_WORDS[COMP_CWORD]}"
##############################################
ghc-8.10.2/utils/check-api-annotations/README-15-
ghc-8.10.2/utils/check-api-annotations/README:16:  $(CHECK_API_ANNOTATIONS) "`'$(TEST_HC)' $(TEST_HC_OPTS) --print-libdir | tr -d '\r'`" FileToParse.hs
ghc-8.10.2/utils/check-api-annotations/README-17-
##############################################
ghc-8.10.2/utils/update-autoconf.sh-9-git -C $tmp clone https://git.savannah.gnu.org/git/config.git
ghc-8.10.2/utils/update-autoconf.sh:10:commit=`git -C $tmp/config rev-parse HEAD`
ghc-8.10.2/utils/update-autoconf.sh-11-echo "Updating to $commit..."
##############################################
ghc-8.10.2/config.sub-52-
ghc-8.10.2/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/config.sub-54-
##############################################
ghc-8.10.2/config.sub-768-	i*86v32)
ghc-8.10.2/config.sub:769:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/config.sub-770-		vendor=pc
##############################################
ghc-8.10.2/config.sub-773-	i*86v4*)
ghc-8.10.2/config.sub:774:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/config.sub-775-		vendor=pc
##############################################
ghc-8.10.2/config.sub-778-	i*86v)
ghc-8.10.2/config.sub:779:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/config.sub-780-		vendor=pc
##############################################
ghc-8.10.2/config.sub-783-	i*86sol2)
ghc-8.10.2/config.sub:784:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/config.sub-785-		vendor=pc
##############################################
ghc-8.10.2/config.sub-916-		cpu=sparc
ghc-8.10.2/config.sub:917:		vendor=`echo "$basic_machine" | sed 's/-.*//'`
ghc-8.10.2/config.sub-918-		;;
##############################################
ghc-8.10.2/config.sub-1083-	sh5e[lb]-*)
ghc-8.10.2/config.sub:1084:		cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'`
ghc-8.10.2/config.sub-1085-		;;
##############################################
ghc-8.10.2/config.sub-1101-	xscale-* | xscalee[bl]-*)
ghc-8.10.2/config.sub:1102:		cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
ghc-8.10.2/config.sub-1103-		;;
##############################################
ghc-8.10.2/config.sub-1256-			*)
ghc-8.10.2/config.sub:1257:				echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
ghc-8.10.2/config.sub-1258-				exit 1
##############################################
ghc-8.10.2/config.sub-1290-	solaris1 | solaris1.*)
ghc-8.10.2/config.sub:1291:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
ghc-8.10.2/config.sub-1292-		;;
##############################################
ghc-8.10.2/config.sub-1299-	gnu/linux*)
ghc-8.10.2/config.sub:1300:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
ghc-8.10.2/config.sub-1301-		;;
##############################################
ghc-8.10.2/config.sub-1322-	sco3.2.[4-9]*)
ghc-8.10.2/config.sub:1323:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
ghc-8.10.2/config.sub-1324-		;;
##############################################
ghc-8.10.2/config.sub-1386-	nto*)
ghc-8.10.2/config.sub:1387:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
ghc-8.10.2/config.sub-1388-		;;
##############################################
ghc-8.10.2/config.sub-1396-	linux*)
ghc-8.10.2/config.sub:1397:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
ghc-8.10.2/config.sub-1398-		;;
##############################################
ghc-8.10.2/config.sub-1408-	mac*)
ghc-8.10.2/config.sub:1409:		os=`echo "$os" | sed -e 's|mac|macos|'`
ghc-8.10.2/config.sub-1410-		;;
##############################################
ghc-8.10.2/config.sub-1417-	sunos5*)
ghc-8.10.2/config.sub:1418:		os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
ghc-8.10.2/config.sub-1419-		;;
ghc-8.10.2/config.sub-1420-	sunos6*)
ghc-8.10.2/config.sub:1421:		os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
ghc-8.10.2/config.sub-1422-		;;
##############################################
ghc-8.10.2/config.sub-1454-	sinix5.*)
ghc-8.10.2/config.sub:1455:		os=`echo $os | sed -e 's|sinix|sysv|'`
ghc-8.10.2/config.sub-1456-		;;
##############################################
ghc-8.10.2/config.sub-1514-	*)
ghc-8.10.2/config.sub:1515:		echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
ghc-8.10.2/config.sub-1516-		exit 1
##############################################
ghc-8.10.2/rules/build-package-data.mk-65-#
ghc-8.10.2/rules/build-package-data.mk:66:# Do `-iquote $(TOP)/$1` so package configure scripts can access their own source.
ghc-8.10.2/rules/build-package-data.mk-67-$1_$2_CONFIGURE_CFLAGS = $$(filter-out -Werror,$$(SRC_CC_OPTS)) $$(CONF_CC_OPTS_STAGE$3) $$($1_CC_OPTS) $$($1_$2_CC_OPTS) $$(SRC_CC_WARNING_OPTS) -iquote $(TOP)/$1
##############################################
ghc-8.10.2/rules/build-dependencies.mk-20-$1_$2_depfile_haskell = $$($1_$2_depfile_base).haskell
ghc-8.10.2/rules/build-dependencies.mk:21:$1_$2_depfile_c_asm = $$($1_$2_depfile_base).c_asm
ghc-8.10.2/rules/build-dependencies.mk-22-
##############################################
ghc-8.10.2/rules/sdist-ghc-file.mk-48-# -----------------------------------------------------------------------------
ghc-8.10.2/rules/sdist-ghc-file.mk:49:# Variant of sdist-ghc-file whose `$3`-argument is interpreted
ghc-8.10.2/rules/sdist-ghc-file.mk-50-# differently in a more appropriate way for cabal-packages
##############################################
ghc-8.10.2/distrib/mkDocs/mkDocs-17-
ghc-8.10.2/distrib/mkDocs/mkDocs:18:LINUX_BINDIST=`realpath "$1"`
ghc-8.10.2/distrib/mkDocs/mkDocs:19:WINDOWS_BINDIST=`realpath "$2"`
ghc-8.10.2/distrib/mkDocs/mkDocs-20-
##############################################
ghc-8.10.2/distrib/hc-build-66-# Get rid of --enable-hc-boot-unregisterised in $configotps if we had it
ghc-8.10.2/distrib/hc-build:67:configopts=`echo $configopts | sed s/--enable-hc-boot-unregisterised//`
ghc-8.10.2/distrib/hc-build-68-
##############################################
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs-136-          let !c = C# (chr# (((ord# ch                                  -# 0xC0#) `uncheckedIShiftL#`  6#) +#
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs:137:                              (ord# (indexCharOffAddr# addr (nh +# 1#)) -# 0x80#)))
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs-138-          in c : unpack (nh +# 2#)
##############################################
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs-140-          let !c = C# (chr# (((ord# ch                                  -# 0xE0#) `uncheckedIShiftL#` 12#) +#
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs:141:                             ((ord# (indexCharOffAddr# addr (nh +# 1#)) -# 0x80#) `uncheckedIShiftL#`  6#) +#
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs:142:                              (ord# (indexCharOffAddr# addr (nh +# 2#)) -# 0x80#)))
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs-143-          in c : unpack (nh +# 3#)
##############################################
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs-145-          let !c = C# (chr# (((ord# ch                                  -# 0xF0#) `uncheckedIShiftL#` 18#) +#
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs:146:                             ((ord# (indexCharOffAddr# addr (nh +# 1#)) -# 0x80#) `uncheckedIShiftL#` 12#) +#
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs:147:                             ((ord# (indexCharOffAddr# addr (nh +# 2#)) -# 0x80#) `uncheckedIShiftL#`  6#) +#
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs:148:                              (ord# (indexCharOffAddr# addr (nh +# 3#)) -# 0x80#)))
ghc-8.10.2/libraries/ghc-prim/GHC/CString.hs-149-          in c : unpack (nh +# 4#)
##############################################
ghc-8.10.2/libraries/ghc-boot-th/GHC/ForeignSrcLang/Type.hs-14-  | LangObjcxx -- ^ Objective C++
ghc-8.10.2/libraries/ghc-boot-th/GHC/ForeignSrcLang/Type.hs:15:  | LangAsm    -- ^ Assembly language (.s)
ghc-8.10.2/libraries/ghc-boot-th/GHC/ForeignSrcLang/Type.hs-16-  | RawObject  -- ^ Object (.o)
##############################################
ghc-8.10.2/libraries/gen_contents_index-40-    do
ghc-8.10.2/libraries/gen_contents_index:41:                LIBPATH=`echo "$HADDOCK_FILE" | sed 's#/dist-install.*##'`
ghc-8.10.2/libraries/gen_contents_index:42:                NAME=`echo "$HADDOCK_FILE" | sed 's#.*/##' | sed 's#\.haddock$##'`
ghc-8.10.2/libraries/gen_contents_index-43-                # It's easier to portably remove tabs with tr than to try to get
ghc-8.10.2/libraries/gen_contents_index-44-                # sed to do what we want
ghc-8.10.2/libraries/gen_contents_index:45:                VERSION=`grep -i '^version:' $LIBPATH/$NAME.cabal | sed 's/.*://' | tr -d ' \t'`
ghc-8.10.2/libraries/gen_contents_index-46-                HADDOCK_ARG="--read-interface=${NAME}-${VERSION},$HADDOCK_FILE"
##############################################
ghc-8.10.2/libraries/gen_contents_index-55-    do
ghc-8.10.2/libraries/gen_contents_index:56:        NAME_VERSION=`echo "$HADDOCK_FILE" | sed 's#/.*##'`
ghc-8.10.2/libraries/gen_contents_index-57-        HADDOCK_ARG="--read-interface=${NAME_VERSION},$HADDOCK_FILE"
##############################################
ghc-8.10.2/libraries/deepseq/changelog.md-30-
ghc-8.10.2/libraries/deepseq/changelog.md:31:  * Add `(<$!!>) :: (Monad m, NFData b) => (a -> b) -> m a -> m b`
ghc-8.10.2/libraries/deepseq/changelog.md-32-    ([#13](https://github.com/haskell/deepseq/issues/13))
##############################################
ghc-8.10.2/libraries/deepseq/changelog.md-146-  * New function `force`
ghc-8.10.2/libraries/deepseq/changelog.md:147:  * New operator `$!!`
ghc-8.10.2/libraries/deepseq/changelog.md-148-  * Add SafeHaskell support
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/State/Strict.hs-240-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/State/Strict.hs:241:    StateT m `mplus` StateT n = StateT $ \ s -> m s `mplus` n s
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/State/Strict.hs-242-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/State/Lazy.hs-243-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/State/Lazy.hs:244:    StateT m `mplus` StateT n = StateT $ \ s -> m s `mplus` n s
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/State/Lazy.hs-245-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/RWS/Strict.hs-224-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/RWS/Strict.hs:225:    RWST m `mplus` RWST n = RWST $ \ r s -> m r s `mplus` n r s
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/RWS/Strict.hs-226-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/RWS/Lazy.hs-221-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/RWS/Lazy.hs:222:    RWST m `mplus` RWST n = RWST $ \ r s -> m r s `mplus` n r s
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/RWS/Lazy.hs-223-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Writer/Strict.hs-223-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Writer/Strict.hs:224:    m `mplus` n = WriterT $ runWriterT m `mplus` runWriterT n
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Writer/Strict.hs-225-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Writer/Lazy.hs-220-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Writer/Lazy.hs:221:    m `mplus` n = WriterT $ runWriterT m `mplus` runWriterT n
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Writer/Lazy.hs-222-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Accum.hs-208-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Accum.hs:209:    m `mplus` n = AccumT $ \ w -> runAccumT m w `mplus` runAccumT n w
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Accum.hs-210-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Select.hs-141-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Select.hs:142:    SelectT f `mplus` SelectT g = SelectT $ \ k -> f k `mplus` g k
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Select.hs-143-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Reader.hs-193-    {-# INLINE mzero #-}
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Reader.hs:194:    m `mplus` n = ReaderT $ \ r -> runReaderT m r `mplus` runReaderT n r
ghc-8.10.2/libraries/transformers/Control/Monad/Trans/Reader.hs-195-    {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/Win32/System/Win32/DebugApi.hsc-246-peekP :: (Storable a) => PHANDLE -> ForeignAddress -> IO a
ghc-8.10.2/libraries/Win32/System/Win32/DebugApi.hsc:247:peekP proc addr = fixIO $ \res -> withProcessMemory proc addr (sizeOf res) peek
ghc-8.10.2/libraries/Win32/System/Win32/DebugApi.hsc-248-
ghc-8.10.2/libraries/Win32/System/Win32/DebugApi.hsc-249-pokeP :: (Storable a) => PHANDLE -> ForeignAddress -> a -> IO ()
ghc-8.10.2/libraries/Win32/System/Win32/DebugApi.hsc:250:pokeP proc addr v = withProcessMemory proc addr (sizeOf v) $ \buf -> poke buf v
ghc-8.10.2/libraries/Win32/System/Win32/DebugApi.hsc-251-
##############################################
ghc-8.10.2/libraries/terminfo/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/terminfo/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/terminfo/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/terminfo/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/terminfo/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/terminfo/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/terminfo/configure-52-else
ghc-8.10.2/libraries/terminfo/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/terminfo/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/terminfo/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/terminfo/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/terminfo/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/terminfo/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/terminfo/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
ghc-8.10.2/libraries/terminfo/configure-201-  if (eval "$as_required") 2>/dev/null; then :
##############################################
ghc-8.10.2/libraries/terminfo/configure-326-      case $as_dir in #(
ghc-8.10.2/libraries/terminfo/configure:327:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/terminfo/configure-328-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-399-  {
ghc-8.10.2/libraries/terminfo/configure:400:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/terminfo/configure-401-  }
##############################################
ghc-8.10.2/libraries/terminfo/configure-406-# ----------------------------------------
ghc-8.10.2/libraries/terminfo/configure:407:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/terminfo/configure-408-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/terminfo/configure-469-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/terminfo/configure:470:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/terminfo/configure-471-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/terminfo/configure-710-  case $ac_option in
ghc-8.10.2/libraries/terminfo/configure:711:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/terminfo/configure-712-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-754-  -disable-* | --disable-*)
ghc-8.10.2/libraries/terminfo/configure:755:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/terminfo/configure-756-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/terminfo/configure-759-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/terminfo/configure:760:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/terminfo/configure-761-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/terminfo/configure-780-  -enable-* | --enable-*)
ghc-8.10.2/libraries/terminfo/configure:781:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/terminfo/configure-782-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/terminfo/configure-785-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/terminfo/configure:786:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/terminfo/configure-787-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/terminfo/configure-984-  -with-* | --with-*)
ghc-8.10.2/libraries/terminfo/configure:985:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/terminfo/configure-986-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/terminfo/configure-989-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/terminfo/configure:990:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/terminfo/configure-991-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/terminfo/configure-1000-  -without-* | --without-*)
ghc-8.10.2/libraries/terminfo/configure:1001:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/terminfo/configure-1002-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/terminfo/configure-1005-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/terminfo/configure:1006:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/terminfo/configure-1007-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/terminfo/configure-1038-  *=*)
ghc-8.10.2/libraries/terminfo/configure:1039:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/terminfo/configure-1040-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/terminfo/configure-1059-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/terminfo/configure:1060:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/terminfo/configure-1061-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/terminfo/configure-1081-    */ )
ghc-8.10.2/libraries/terminfo/configure:1082:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/terminfo/configure-1083-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-1116-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/terminfo/configure:1117:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/terminfo/configure-1118-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/terminfo/configure-1172-case $srcdir in
ghc-8.10.2/libraries/terminfo/configure:1173:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/terminfo/configure-1174-esac
##############################################
ghc-8.10.2/libraries/terminfo/configure-1215-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/terminfo/configure:1216:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/terminfo/configure:1217:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/terminfo/configure-1218-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/terminfo/configure-1286-*)
ghc-8.10.2/libraries/terminfo/configure:1287:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/terminfo/configure-1288-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/terminfo/configure:1289:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/terminfo/configure-1290-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/terminfo/configure-1506-    *\'*)
ghc-8.10.2/libraries/terminfo/configure:1507:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/terminfo/configure-1508-    esac
##############################################
ghc-8.10.2/libraries/terminfo/configure-1589-      case $ac_val in
ghc-8.10.2/libraries/terminfo/configure:1590:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/terminfo/configure-1591-      esac
##############################################
ghc-8.10.2/libraries/terminfo/configure-1604-	case $ac_val in
ghc-8.10.2/libraries/terminfo/configure:1605:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/terminfo/configure-1606-	esac
##############################################
ghc-8.10.2/libraries/terminfo/configure-1724-    set,)
ghc-8.10.2/libraries/terminfo/configure:1725:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/terminfo/configure:1726:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/terminfo/configure-1727-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-1735-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/terminfo/configure:1736:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/terminfo/configure:1737:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/terminfo/configure-1738-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/terminfo/configure-1755-    case $ac_new_val in
ghc-8.10.2/libraries/terminfo/configure:1756:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/terminfo/configure-1757-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-2145-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/libraries/terminfo/configure:2146:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/libraries/terminfo/configure-2147-
##############################################
ghc-8.10.2/libraries/terminfo/configure-2189-	then :; else
ghc-8.10.2/libraries/terminfo/configure:2190:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/terminfo/configure-2191-	fi
##############################################
ghc-8.10.2/libraries/terminfo/configure-2249-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/libraries/terminfo/configure:2250:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/terminfo/configure-2251-	  break;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-2358-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/libraries/terminfo/configure:2359:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/libraries/terminfo/configure-2360-       break;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-2938-'
ghc-8.10.2/libraries/terminfo/configure:2939:DEFS=`sed -n "$ac_script" confdefs.h`
ghc-8.10.2/libraries/terminfo/configure-2940-
##############################################
ghc-8.10.2/libraries/terminfo/configure-2947-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/terminfo/configure:2948:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/terminfo/configure-2949-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/terminfo/configure-3014-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/terminfo/configure:3015:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/terminfo/configure-3016-  as_echo='print -r --'
ghc-8.10.2/libraries/terminfo/configure-3017-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/terminfo/configure:3018:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/terminfo/configure-3019-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/terminfo/configure-3021-else
ghc-8.10.2/libraries/terminfo/configure:3022:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/terminfo/configure-3023-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/terminfo/configure-3031-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/terminfo/configure:3032:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/terminfo/configure-3033-      esac;
##############################################
ghc-8.10.2/libraries/terminfo/configure-3108-# ----------------------------------------
ghc-8.10.2/libraries/terminfo/configure:3109:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/terminfo/configure-3110-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/terminfo/configure-3180-  {
ghc-8.10.2/libraries/terminfo/configure:3181:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/terminfo/configure-3182-  }
##############################################
ghc-8.10.2/libraries/terminfo/configure-3284-      case $as_dir in #(
ghc-8.10.2/libraries/terminfo/configure:3285:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/terminfo/configure-3286-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-3406-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/terminfo/configure:3407:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/terminfo/configure-3408-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/terminfo/configure-3428-  --*=?*)
ghc-8.10.2/libraries/terminfo/configure:3429:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/terminfo/configure:3430:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/terminfo/configure-3431-    ac_shift=:
##############################################
ghc-8.10.2/libraries/terminfo/configure-3433-  --*=)
ghc-8.10.2/libraries/terminfo/configure:3434:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/terminfo/configure-3435-    ac_optarg=
##############################################
ghc-8.10.2/libraries/terminfo/configure-3457-    case $ac_optarg in
ghc-8.10.2/libraries/terminfo/configure:3458:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/terminfo/configure-3459-    '') as_fn_error $? "missing file argument" ;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-3573-fi
ghc-8.10.2/libraries/terminfo/configure:3574:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
ghc-8.10.2/libraries/terminfo/configure-3575-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
ghc-8.10.2/libraries/terminfo/configure-3590-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ghc-8.10.2/libraries/terminfo/configure:3591:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ghc-8.10.2/libraries/terminfo/configure-3592-ac_delim='%!_!# '
##############################################
ghc-8.10.2/libraries/terminfo/configure-3596-
ghc-8.10.2/libraries/terminfo/configure:3597:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
ghc-8.10.2/libraries/terminfo/configure-3598-  if test $ac_delim_n = $ac_delim_num; then
##############################################
ghc-8.10.2/libraries/terminfo/configure-3758-      esac
ghc-8.10.2/libraries/terminfo/configure:3759:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/terminfo/configure-3760-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/terminfo/configure-3817-*)
ghc-8.10.2/libraries/terminfo/configure:3818:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/terminfo/configure-3819-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/terminfo/configure:3820:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/terminfo/configure-3821-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/terminfo/configure-3869-/@mandir@/p'
ghc-8.10.2/libraries/terminfo/configure:3870:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
ghc-8.10.2/libraries/terminfo/configure-3871-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
ghc-8.10.2/libraries/terminfo/configure-3886-
ghc-8.10.2/libraries/terminfo/configure:3887:# Neutralize VPATH when `$srcdir' = `.'.
ghc-8.10.2/libraries/terminfo/configure-3888-# Shell code in configure.ac might set extrasub.
##############################################
ghc-8.10.2/libraries/terminfo/configure-3912-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
ghc-8.10.2/libraries/terminfo/configure:3913:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
ghc-8.10.2/libraries/terminfo/configure-3914-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs-223-exportIntegerToAddr :: Integer -> Addr# -> Int# -> IO Word
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs:224:exportIntegerToAddr (S# i#)  = exportWordToAddr (W# (int2Word# (absI# i#)))
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs:225:exportIntegerToAddr (Jp# bn) = exportBigNatToAddr bn
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs:226:exportIntegerToAddr (Jn# bn) = exportBigNatToAddr bn
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs-227-
##############################################
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs-238-exportWordToAddr :: Word -> Addr# -> Int# -> IO Word
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs:239:exportWordToAddr (W# w#) addr
ghc-8.10.2/libraries/integer-gmp/src/GHC/Integer/GMP/Internals.hs-240-  = c_mpn_export1ToAddr# w# addr 0# -- TODO: we don't calling GMP for that
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-34-
ghc-8.10.2/libraries/integer-gmp/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/libraries/integer-gmp/config.guess-36-
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-105-    # shellcheck disable=SC2039
ghc-8.10.2/libraries/integer-gmp/config.guess:106:    { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
ghc-8.10.2/libraries/integer-gmp/config.guess-107-	{ test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } ||
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-155-	EOF
ghc-8.10.2/libraries/integer-gmp/config.guess:156:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-157-
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-192-	    earmv*)
ghc-8.10.2/libraries/integer-gmp/config.guess:193:		arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
ghc-8.10.2/libraries/integer-gmp/config.guess:194:		endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
ghc-8.10.2/libraries/integer-gmp/config.guess-195-		machine="${arch}${endian}"-unknown
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-224-		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
ghc-8.10.2/libraries/integer-gmp/config.guess:225:		abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
ghc-8.10.2/libraries/integer-gmp/config.guess-226-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-237-	    *)
ghc-8.10.2/libraries/integer-gmp/config.guess:238:		release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
ghc-8.10.2/libraries/integer-gmp/config.guess-239-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-290-	*4.0)
ghc-8.10.2/libraries/integer-gmp/config.guess:291:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
ghc-8.10.2/libraries/integer-gmp/config.guess-292-		;;
ghc-8.10.2/libraries/integer-gmp/config.guess-293-	*5.*)
ghc-8.10.2/libraries/integer-gmp/config.guess:294:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
ghc-8.10.2/libraries/integer-gmp/config.guess-295-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-300-	# types through head -n 1, so we only detect the type of CPU 0.
ghc-8.10.2/libraries/integer-gmp/config.guess:301:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
ghc-8.10.2/libraries/integer-gmp/config.guess-302-	case "$ALPHA_CPU_TYPE" in
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-338-	# 1.2 uses "1.2" for uname -r.
ghc-8.10.2/libraries/integer-gmp/config.guess:339:	echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
ghc-8.10.2/libraries/integer-gmp/config.guess-340-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-389-    s390x:SunOS:*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:390:	echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-391-	exit ;;
ghc-8.10.2/libraries/integer-gmp/config.guess-392-    sun4H:SunOS:5.*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:393:	echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-394-	exit ;;
ghc-8.10.2/libraries/integer-gmp/config.guess-395-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:396:	echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-397-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-414-	fi
ghc-8.10.2/libraries/integer-gmp/config.guess:415:	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-416-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-420-	# it's likely to be more like Solaris than SunOS4.
ghc-8.10.2/libraries/integer-gmp/config.guess:421:	echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-422-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-429-	# Japanese Language versions have a version number like `4.1.3-JL'.
ghc-8.10.2/libraries/integer-gmp/config.guess:430:	echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-431-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-435-    sun*:*:4.2BSD:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:436:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
ghc-8.10.2/libraries/integer-gmp/config.guess-437-	test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-517-	$CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
ghc-8.10.2/libraries/integer-gmp/config.guess:518:	  dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
ghc-8.10.2/libraries/integer-gmp/config.guess:519:	  SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
ghc-8.10.2/libraries/integer-gmp/config.guess-520-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-573-    *:IRIX*:*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:574:	echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-575-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-603-EOF
ghc-8.10.2/libraries/integer-gmp/config.guess:604:		if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
ghc-8.10.2/libraries/integer-gmp/config.guess-605-		then
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-616-    *:AIX:*:[4567])
ghc-8.10.2/libraries/integer-gmp/config.guess:617:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
ghc-8.10.2/libraries/integer-gmp/config.guess-618-	if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-652-    9000/[34678]??:HP-UX:*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:653:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/libraries/integer-gmp/config.guess-654-	case "$UNAME_MACHINE" in
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-706-EOF
ghc-8.10.2/libraries/integer-gmp/config.guess:707:		    (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
ghc-8.10.2/libraries/integer-gmp/config.guess-708-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-734-    ia64:HP-UX:*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:735:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/libraries/integer-gmp/config.guess-736-	echo ia64-hp-hpux"$HPUX_REV"
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-764-EOF
ghc-8.10.2/libraries/integer-gmp/config.guess:765:	$CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
ghc-8.10.2/libraries/integer-gmp/config.guess-766-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-835-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/libraries/integer-gmp/config.guess:836:	FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
ghc-8.10.2/libraries/integer-gmp/config.guess-837-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-840-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/libraries/integer-gmp/config.guess:841:	FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
ghc-8.10.2/libraries/integer-gmp/config.guess-842-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-858-	then
ghc-8.10.2/libraries/integer-gmp/config.guess:859:	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi
ghc-8.10.2/libraries/integer-gmp/config.guess-860-	else
ghc-8.10.2/libraries/integer-gmp/config.guess:861:	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf
ghc-8.10.2/libraries/integer-gmp/config.guess-862-	fi
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-871-	esac
ghc-8.10.2/libraries/integer-gmp/config.guess:872:	echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-873-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-907-    prep*:SunOS:5.*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:908:	echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-909-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-911-	# the GNU system
ghc-8.10.2/libraries/integer-gmp/config.guess:912:	echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-913-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-915-	# other systems with GNU libc and userland
ghc-8.10.2/libraries/integer-gmp/config.guess:916:	echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
ghc-8.10.2/libraries/integer-gmp/config.guess-917-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-1037-EOF
ghc-8.10.2/libraries/integer-gmp/config.guess:1038:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-1039-	test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; }
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-1137-    i*86:*:4.*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:1138:	UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
ghc-8.10.2/libraries/integer-gmp/config.guess-1139-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-1440-    *:DragonFly:*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:1441:	echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-1442-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-1453-    i*86:skyos:*:*)
ghc-8.10.2/libraries/integer-gmp/config.guess:1454:	echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
ghc-8.10.2/libraries/integer-gmp/config.guess-1455-	exit ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.guess-1603-
ghc-8.10.2/libraries/integer-gmp/config.guess:1604:$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` &&
ghc-8.10.2/libraries/integer-gmp/config.guess-1605-	{ echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-52-
ghc-8.10.2/libraries/integer-gmp/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/libraries/integer-gmp/config.sub-54-
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-768-	i*86v32)
ghc-8.10.2/libraries/integer-gmp/config.sub:769:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/integer-gmp/config.sub-770-		vendor=pc
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-773-	i*86v4*)
ghc-8.10.2/libraries/integer-gmp/config.sub:774:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/integer-gmp/config.sub-775-		vendor=pc
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-778-	i*86v)
ghc-8.10.2/libraries/integer-gmp/config.sub:779:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/integer-gmp/config.sub-780-		vendor=pc
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-783-	i*86sol2)
ghc-8.10.2/libraries/integer-gmp/config.sub:784:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/integer-gmp/config.sub-785-		vendor=pc
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-916-		cpu=sparc
ghc-8.10.2/libraries/integer-gmp/config.sub:917:		vendor=`echo "$basic_machine" | sed 's/-.*//'`
ghc-8.10.2/libraries/integer-gmp/config.sub-918-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1083-	sh5e[lb]-*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1084:		cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1085-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1101-	xscale-* | xscalee[bl]-*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1102:		cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1103-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1256-			*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1257:				echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
ghc-8.10.2/libraries/integer-gmp/config.sub-1258-				exit 1
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1290-	solaris1 | solaris1.*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1291:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1292-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1299-	gnu/linux*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1300:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1301-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1322-	sco3.2.[4-9]*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1323:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1324-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1386-	nto*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1387:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1388-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1396-	linux*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1397:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1398-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1408-	mac*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1409:		os=`echo "$os" | sed -e 's|mac|macos|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1410-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1417-	sunos5*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1418:		os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1419-		;;
ghc-8.10.2/libraries/integer-gmp/config.sub-1420-	sunos6*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1421:		os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1422-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1454-	sinix5.*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1455:		os=`echo $os | sed -e 's|sinix|sysv|'`
ghc-8.10.2/libraries/integer-gmp/config.sub-1456-		;;
##############################################
ghc-8.10.2/libraries/integer-gmp/config.sub-1514-	*)
ghc-8.10.2/libraries/integer-gmp/config.sub:1515:		echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
ghc-8.10.2/libraries/integer-gmp/config.sub-1516-		exit 1
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/integer-gmp/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/integer-gmp/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/integer-gmp/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/integer-gmp/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/integer-gmp/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-52-else
ghc-8.10.2/libraries/integer-gmp/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/integer-gmp/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/integer-gmp/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/integer-gmp/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/integer-gmp/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
ghc-8.10.2/libraries/integer-gmp/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-327-      case $as_dir in #(
ghc-8.10.2/libraries/integer-gmp/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/integer-gmp/configure-329-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-400-  {
ghc-8.10.2/libraries/integer-gmp/configure:401:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/integer-gmp/configure-402-  }
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-407-# ----------------------------------------
ghc-8.10.2/libraries/integer-gmp/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/integer-gmp/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/integer-gmp/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/integer-gmp/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-776-  case $ac_option in
ghc-8.10.2/libraries/integer-gmp/configure:777:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/integer-gmp/configure-778-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-820-  -disable-* | --disable-*)
ghc-8.10.2/libraries/integer-gmp/configure:821:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-822-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-825-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/integer-gmp/configure:826:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/integer-gmp/configure-827-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-846-  -enable-* | --enable-*)
ghc-8.10.2/libraries/integer-gmp/configure:847:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-848-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-851-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/integer-gmp/configure:852:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/integer-gmp/configure-853-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1050-  -with-* | --with-*)
ghc-8.10.2/libraries/integer-gmp/configure:1051:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-1052-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1055-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/integer-gmp/configure:1056:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/integer-gmp/configure-1057-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1066-  -without-* | --without-*)
ghc-8.10.2/libraries/integer-gmp/configure:1067:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-1068-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1071-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/integer-gmp/configure:1072:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/integer-gmp/configure-1073-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1104-  *=*)
ghc-8.10.2/libraries/integer-gmp/configure:1105:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/integer-gmp/configure-1106-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1125-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/integer-gmp/configure:1126:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/integer-gmp/configure-1127-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1147-    */ )
ghc-8.10.2/libraries/integer-gmp/configure:1148:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-1149-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1182-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/integer-gmp/configure:1183:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/integer-gmp/configure-1184-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1238-case $srcdir in
ghc-8.10.2/libraries/integer-gmp/configure:1239:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/integer-gmp/configure-1240-esac
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1281-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/integer-gmp/configure:1282:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/integer-gmp/configure:1283:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/integer-gmp/configure-1284-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1362-*)
ghc-8.10.2/libraries/integer-gmp/configure:1363:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/integer-gmp/configure-1364-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/integer-gmp/configure:1365:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/integer-gmp/configure-1366-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-1966-    *\'*)
ghc-8.10.2/libraries/integer-gmp/configure:1967:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/integer-gmp/configure-1968-    esac
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2049-      case $ac_val in
ghc-8.10.2/libraries/integer-gmp/configure:2050:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/integer-gmp/configure-2051-      esac
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2064-	case $ac_val in
ghc-8.10.2/libraries/integer-gmp/configure:2065:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/integer-gmp/configure-2066-	esac
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2184-    set,)
ghc-8.10.2/libraries/integer-gmp/configure:2185:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/integer-gmp/configure:2186:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/integer-gmp/configure-2187-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2195-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/integer-gmp/configure:2196:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/integer-gmp/configure:2197:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/integer-gmp/configure-2198-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2215-    case $ac_new_val in
ghc-8.10.2/libraries/integer-gmp/configure:2216:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/integer-gmp/configure-2217-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2286-test "x$ac_build_alias" = x &&
ghc-8.10.2/libraries/integer-gmp/configure:2287:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
ghc-8.10.2/libraries/integer-gmp/configure-2288-test "x$ac_build_alias" = x &&
ghc-8.10.2/libraries/integer-gmp/configure-2289-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
ghc-8.10.2/libraries/integer-gmp/configure:2290:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
ghc-8.10.2/libraries/integer-gmp/configure-2291-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2310-IFS=$ac_save_IFS
ghc-8.10.2/libraries/integer-gmp/configure:2311:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/integer-gmp/configure-2312-
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2321-else
ghc-8.10.2/libraries/integer-gmp/configure:2322:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
ghc-8.10.2/libraries/integer-gmp/configure-2323-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2343-IFS=$ac_save_IFS
ghc-8.10.2/libraries/integer-gmp/configure:2344:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/integer-gmp/configure-2345-
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2354-else
ghc-8.10.2/libraries/integer-gmp/configure:2355:  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
ghc-8.10.2/libraries/integer-gmp/configure-2356-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2376-IFS=$ac_save_IFS
ghc-8.10.2/libraries/integer-gmp/configure:2377:case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/integer-gmp/configure-2378-
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2732-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/libraries/integer-gmp/configure:2733:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/libraries/integer-gmp/configure-2734-
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2776-	then :; else
ghc-8.10.2/libraries/integer-gmp/configure:2777:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-2778-	fi
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2836-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/libraries/integer-gmp/configure:2837:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-2838-	  break;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-2945-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/libraries/integer-gmp/configure:2946:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-2947-       break;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-3333-  # Check for GNU $ac_path_GREP
ghc-8.10.2/libraries/integer-gmp/configure:3334:case `"$ac_path_GREP" --version 2>&1` in
ghc-8.10.2/libraries/integer-gmp/configure-3335-*GNU*)
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-3399-  # Check for GNU $ac_path_EGREP
ghc-8.10.2/libraries/integer-gmp/configure:3400:case `"$ac_path_EGREP" --version 2>&1` in
ghc-8.10.2/libraries/integer-gmp/configure-3401-*GNU*)
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-3560-do :
ghc-8.10.2/libraries/integer-gmp/configure:3561:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/integer-gmp/configure-3562-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-3565-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/integer-gmp/configure:3566:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/integer-gmp/configure-3567-_ACEOF
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-3811-        then
ghc-8.10.2/libraries/integer-gmp/configure:3812:            as_ac_Lib=`$as_echo "ac_cv_lib_$GMP_LIBS''___gmpz_powm_sec" | $as_tr_sh`
ghc-8.10.2/libraries/integer-gmp/configure-3813-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __gmpz_powm_sec in -l$GMP_LIBS" >&5
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-3945-        then
ghc-8.10.2/libraries/integer-gmp/configure:3946:            as_ac_Lib=`$as_echo "ac_cv_lib_$GMP_LIBS''___gmpz_powm_sec" | $as_tr_sh`
ghc-8.10.2/libraries/integer-gmp/configure-3947-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __gmpz_powm_sec in -l$GMP_LIBS" >&5
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4229-'
ghc-8.10.2/libraries/integer-gmp/configure:4230:DEFS=`sed -n "$ac_script" confdefs.h`
ghc-8.10.2/libraries/integer-gmp/configure-4231-
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4238-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/integer-gmp/configure:4239:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/integer-gmp/configure-4240-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4305-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/integer-gmp/configure:4306:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/integer-gmp/configure-4307-  as_echo='print -r --'
ghc-8.10.2/libraries/integer-gmp/configure-4308-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/integer-gmp/configure:4309:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/integer-gmp/configure-4310-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4312-else
ghc-8.10.2/libraries/integer-gmp/configure:4313:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/integer-gmp/configure-4314-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4322-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/integer-gmp/configure:4323:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/integer-gmp/configure-4324-      esac;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4399-# ----------------------------------------
ghc-8.10.2/libraries/integer-gmp/configure:4400:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/integer-gmp/configure-4401-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4471-  {
ghc-8.10.2/libraries/integer-gmp/configure:4472:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/integer-gmp/configure-4473-  }
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4575-      case $as_dir in #(
ghc-8.10.2/libraries/integer-gmp/configure:4576:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/integer-gmp/configure-4577-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4697-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/integer-gmp/configure:4698:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/integer-gmp/configure-4699-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4719-  --*=?*)
ghc-8.10.2/libraries/integer-gmp/configure:4720:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/integer-gmp/configure:4721:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/integer-gmp/configure-4722-    ac_shift=:
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4724-  --*=)
ghc-8.10.2/libraries/integer-gmp/configure:4725:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/integer-gmp/configure-4726-    ac_optarg=
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4748-    case $ac_optarg in
ghc-8.10.2/libraries/integer-gmp/configure:4749:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/integer-gmp/configure-4750-    '') as_fn_error $? "missing file argument" ;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4866-fi
ghc-8.10.2/libraries/integer-gmp/configure:4867:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
ghc-8.10.2/libraries/integer-gmp/configure-4868-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4883-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ghc-8.10.2/libraries/integer-gmp/configure:4884:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ghc-8.10.2/libraries/integer-gmp/configure-4885-ac_delim='%!_!# '
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-4889-
ghc-8.10.2/libraries/integer-gmp/configure:4890:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
ghc-8.10.2/libraries/integer-gmp/configure-4891-  if test $ac_delim_n = $ac_delim_num; then
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-5051-      esac
ghc-8.10.2/libraries/integer-gmp/configure:5052:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/integer-gmp/configure-5053-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-5110-*)
ghc-8.10.2/libraries/integer-gmp/configure:5111:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/integer-gmp/configure-5112-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/integer-gmp/configure:5113:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/integer-gmp/configure-5114-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-5162-/@mandir@/p'
ghc-8.10.2/libraries/integer-gmp/configure:5163:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
ghc-8.10.2/libraries/integer-gmp/configure-5164-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-5179-
ghc-8.10.2/libraries/integer-gmp/configure:5180:# Neutralize VPATH when `$srcdir' = `.'.
ghc-8.10.2/libraries/integer-gmp/configure-5181-# Shell code in configure.ac might set extrasub.
##############################################
ghc-8.10.2/libraries/integer-gmp/configure-5205-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
ghc-8.10.2/libraries/integer-gmp/configure:5206:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
ghc-8.10.2/libraries/integer-gmp/configure-5207-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
ghc-8.10.2/libraries/integer-gmp/install-sh-229-      fi
ghc-8.10.2/libraries/integer-gmp/install-sh:230:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
ghc-8.10.2/libraries/integer-gmp/install-sh-231-    *)
##############################################
ghc-8.10.2/libraries/integer-gmp/install-sh-276-      dstdir=$dst
ghc-8.10.2/libraries/integer-gmp/install-sh:277:      dst=$dstdir/`basename "$src"`
ghc-8.10.2/libraries/integer-gmp/install-sh-278-      dstdir_status=0
##############################################
ghc-8.10.2/libraries/integer-gmp/install-sh-358-		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
ghc-8.10.2/libraries/integer-gmp/install-sh:359:		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
ghc-8.10.2/libraries/integer-gmp/install-sh-360-		   case $ls_ld_tmpdir in
##############################################
ghc-8.10.2/libraries/integer-gmp/install-sh-365-		   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
ghc-8.10.2/libraries/integer-gmp/install-sh:366:		     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
ghc-8.10.2/libraries/integer-gmp/install-sh-367-		     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
ghc-8.10.2/libraries/integer-gmp/install-sh-425-	    case $prefix in
ghc-8.10.2/libraries/integer-gmp/install-sh:426:	      *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
ghc-8.10.2/libraries/integer-gmp/install-sh-427-	      *) qprefix=$prefix;;
##############################################
ghc-8.10.2/libraries/integer-gmp/install-sh-474-    if $copy_on_change &&
ghc-8.10.2/libraries/integer-gmp/install-sh:475:       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
ghc-8.10.2/libraries/integer-gmp/install-sh:476:       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
ghc-8.10.2/libraries/integer-gmp/install-sh-477-
##############################################
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl-31-print "\n\n";
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl:32:system ($HPC, "report", "$binary.tix");
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl-33-print "\n\n";
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl:34:system ($HPC, "report", "$binary.tix", "--per-module");
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl-35-print "\n\n";
##############################################
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl-40-  if (/Writing: (\S+.html)/) {
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl:41:     system("cat $1");        
ghc-8.10.2/libraries/hpc/tests/hpcrun.pl-42-  }
##############################################
ghc-8.10.2/libraries/Cabal/cabal-install/README.md-55-It will download and install the dependencies. The script will install the
ghc-8.10.2/libraries/Cabal/cabal-install/README.md:56:library packages (vanilla, profiling and shared) into `$HOME/.cabal/` and the
ghc-8.10.2/libraries/Cabal/cabal-install/README.md:57:`cabal` program into `$HOME/.cabal/bin/`. If you don't want to install profiling
ghc-8.10.2/libraries/Cabal/cabal-install/README.md-58-and shared versions of the libraries, use
##############################################
ghc-8.10.2/libraries/Cabal/cabal-install/README.md-61-
ghc-8.10.2/libraries/Cabal/cabal-install/README.md:62:You then have the choice either to place `$HOME/.cabal/bin` on your
ghc-8.10.2/libraries/Cabal/cabal-install/README.md:63:`$PATH` or move the `cabal` program to somewhere on your `$PATH`. Next,
ghc-8.10.2/libraries/Cabal/cabal-install/README.md-64-you can get the latest list of packages by running:
##############################################
ghc-8.10.2/libraries/Cabal/cabal-install/README.md-68-This will also create a default configuration file, if it does not
ghc-8.10.2/libraries/Cabal/cabal-install/README.md:69:already exist, at `$HOME/.cabal/config`.
ghc-8.10.2/libraries/Cabal/cabal-install/README.md-70-
ghc-8.10.2/libraries/Cabal/cabal-install/README.md:71:By default, `cabal` will install programs to `$HOME/.cabal/bin`. If you
ghc-8.10.2/libraries/Cabal/cabal-install/README.md:72:do not want to add this directory to your `$PATH`, you can change
ghc-8.10.2/libraries/Cabal/cabal-install/README.md-73-the setting in the config file; for example, you could use the
##############################################
ghc-8.10.2/libraries/Cabal/cabal-install/tests/IntegrationTests2.hs-474-    fromString pkgidstr = pkgid
ghc-8.10.2/libraries/Cabal/cabal-install/tests/IntegrationTests2.hs:475:      where pkgid = fromMaybe (error $"fromString @PackageIdentifier " ++ show pkgidstr) $ simpleParse pkgidstr
ghc-8.10.2/libraries/Cabal/cabal-install/tests/IntegrationTests2.hs-476-
##############################################
ghc-8.10.2/libraries/Cabal/cabal-install/Distribution/Client/Setup.hs-1879-     ++ "When using a sandbox, executables will be put into"
ghc-8.10.2/libraries/Cabal/cabal-install/Distribution/Client/Setup.hs:1880:     ++ " `$SANDBOX/bin/` (by default: `./.cabal-sandbox/bin/`).\n"
ghc-8.10.2/libraries/Cabal/cabal-install/Distribution/Client/Setup.hs-1881-     ++ "\n"
##############################################
ghc-8.10.2/libraries/Cabal/travis-script.sh-28-usage() {
ghc-8.10.2/libraries/Cabal/travis-script.sh:29:    echo -e -n "Usage: `basename $0`\n-j  jobs\n"
ghc-8.10.2/libraries/Cabal/travis-script.sh-30-}
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/README.md-39-
ghc-8.10.2/libraries/Cabal/Cabal/README.md:40:This will install into `$HOME/.cabal/` on Unix and into
ghc-8.10.2/libraries/Cabal/Cabal/README.md:41:`Documents and Settings\$User\Application Data\cabal\` on Windows.
ghc-8.10.2/libraries/Cabal/Cabal/README.md-42-If you want to install elsewhere, use the `--prefix=` flag at the
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/README.md-58-This will install into `/usr/local` on Unix, and on Windows it will
ghc-8.10.2/libraries/Cabal/Cabal/README.md:59:install into `$ProgramFiles/Haskell`. If you want to install elsewhere,
ghc-8.10.2/libraries/Cabal/Cabal/README.md-60-use the `--prefix=` flag at the configure step.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-303-Normally, the sandbox settings (such as optimisation level) are
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:304:inherited from the main Cabal config file (``$HOME/cabal/config``).
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-305-Sometimes, though, you need to change some settings specifically for a
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-386-configuration file (``~/.cabal/config``) or the per-project one
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:387:(``$PROJECT_DIR/cabal.config``). The error can be squelched with
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-388-``--no-require-sandbox``.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-618-    In the simple build system, *dir* may contain the following path
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:619:    variables: ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:620:    ``$os``, ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-621-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-626-    In the simple build system, *dir* may contain the following path
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:627:    variables: ``$prefix``, ``$pkgid``, ``$pkg``, ``$version``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:628:    ``$compiler``, ``$os``, ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-629-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-634-    In the simple build system, *dir* may contain the following path
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:635:    variables: ``$prefix``, ``$bindir``, ``$pkgid``, ``$pkg``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:636:    ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:637:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-638-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-642-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:643:    By default, this is set to `$libdir/$abi`, which is usually not equal to
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:644:    `$libdir/$libsubdir`.
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-645-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-646-    In the simple build system, *dir* may contain the following path
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:647:    variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$pkgid``, ``$pkg``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:648:    ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:649:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-650-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-656-    In the simple build system, *dir* may contain the following path
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:657:    variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$libsubdir``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:658:    ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``, ``$os``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:659:    ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-660-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-665-    In the simple build system, *dir* may contain the following path
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:666:    variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$libsubdir``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:667:    ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``, ``$os``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:668:    ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-669-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-674-    In the simple build system, *dir* may contain the following path
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:675:    variables: ``$prefix``, ``$bindir``, ``$libdir``, ``$libsubdir``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:676:    ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``, ``$os``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:677:    ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-678-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-691-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:692:    *dir* may contain the following path variables: ``$pkgid``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:693:    ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:694:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-695-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-703-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:704:    *dir* may contain the following path variables: ``$pkgid``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:705:    ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:706:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-707-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-712-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:713:    *dir* may contain the following path variables: ``$pkgid``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:714:    ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:715:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-716-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-720-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:721:    *dir* may contain the following path variables: ``$prefix``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:722:    ``$bindir``, ``$libdir``, ``$libsubdir``, ``$datadir``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:723:    ``$datasubdir``, ``$pkgid``, ``$pkg``, ``$version``, ``$compiler``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:724:    ``$os``, ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-725-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-729-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:730:    *dir* may contain the following path variables: ``$prefix``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:731:    ``$bindir``, ``$libdir``, ``$libsubdir``, ``$datadir``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:732:    ``$datasubdir``, ``$docdir``, ``$pkgid``, ``$pkg``, ``$version``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:733:    ``$compiler``, ``$os``, ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-734-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-738-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:739:    *prefix* may contain the following path variables: ``$pkgid``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:740:    ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:741:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-742-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-747-    to install several versions of a program at once:
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:748:    ``--program-suffix='$version'``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-749-
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:750:    *suffix* may contain the following path variables: ``$pkgid``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:751:    ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:752:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-753-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-759-in terms of these variables. A number of the variables are actually for
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:760:other paths, like ``$prefix``. This allows paths to be specified
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-761-relative to each other rather than as absolute paths, which is important
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-767-    an installation to be relocatable, all other installation paths must
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:768:    be relative to the ``$prefix`` variable.
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-769-$bindir
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-805-    platform in terms of binary compatibility. Expands to the same value
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:806:    as ``$arch-$os-compiler-$abitag`` if the compiler uses an abi tag,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:807:    ``$arch-$os-$compiler`` if it doesn't.
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-808-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-822-    * - :option:`--prefix` (per-user)
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:823:      - ``$HOME/.cabal``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-824-      - ``%APPDATA%\cabal``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-825-    * - :option:`--bindir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:826:      - ``$prefix/bin``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:827:      - ``$prefix\bin``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-828-    * - :option:`--libdir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:829:      - ``$prefix/lib``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:830:      - ``$prefix``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-831-    * - :option:`--libsubdir` (others)
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:832:      - ``$pkgid/$compiler``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:833:      - ``$pkgid\$compiler``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-834-    * - :option:`--dynlibdir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:835:      - ``$libdir/$abi``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:836:      - ``$libdir\$abi``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-837-    * - :option:`--libexecdir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:838:      - ``$prefix/libexec``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:839:      - ``$prefix\$pkgid``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-840-    * - :option:`--datadir` (executable)
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:841:      - ``$prefix/share``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:842:      - ``$prefix``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-843-    * - :option:`--datadir` (library)
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:844:      - ``$prefix/share``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-845-      - ``%PROGRAMFILES%\Haskell``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-846-    * - :option:`--datasubdir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:847:      - ``$pkgid``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:848:      - ``$pkgid``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-849-    * - :option:`--docdir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:850:      - ``$datadir/doc/$pkgid``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:851:      - ``$prefix\doc\$pkgid``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-852-    * - :option:`--sysconfdir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:853:      - ``$prefix/etc``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:854:      - ``$prefix\etc``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-855-    * - :option:`--htmldir`
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:856:      - ``$docdir/html``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:857:      - ``$docdir\html``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-858-    * - :option:`--program-prefix`
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-871-its auxiliary files by finding its own path and knowing the location of
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:872:the other files relative to ``$bindir``. Prefix-independence is
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-873-particularly useful: it means the user can choose the install location
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:874:(i.e. the value of ``$prefix``) at install-time, rather than having to
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-875-bake the path into the binary when it is built.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-877-In order to achieve this, we require that for an executable on Windows,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:878:all of ``$bindir``, ``$libdir``, ``$dynlibdir``, ``$datadir`` and ``$libexecdir`` begin
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:879:with ``$prefix``. If this is not the case then the compiled executable
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-880-will have baked-in all absolute paths.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-1721-    relative to ``dist/test``. By default, logs are named according to
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:1722:    the template ``$pkgid-$test-suite.log``, so that each test suite
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-1723-    will be logged to its own human-readable log file. Template
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:1724:    variables allowed are: ``$pkgid``, ``$compiler``, ``$os``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:1725:    ``$arch``, ``$abi``, ``$abitag``, ``$test-suite``, and ``$result``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-1726-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-1729-    The path to the machine-readable log, relative to ``dist/test``. The
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:1730:    default template is ``$pkgid.log``. Template variables allowed are:
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:1731:    ``$pkgid``, ``$compiler``, ``$os``, ``$arch``, ``$abi``, ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst:1732:    and ``$result``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/installing-packages.rst-1733-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-263-Note that every package also has a local cache managed by the Cabal
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:264:build system, e.g., in ``$distdir/cache``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-265-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-579-This works by managing GHC environments. By default, it is writing to the
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:580:global environment in ``~/.ghc/$ARCH-$OS-$GHCVER/environments/default``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-581-``v2-install`` provides the ``--package-env`` flag to control which of
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-860-
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:861:    Run *nat* jobs simultaneously when building. If ``$ncpus`` is
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-862-    specified, run the number of jobs equal to the number of CPUs.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-867-    ``-j2`` is also supported; a bare ``--jobs`` or ``-j`` is equivalent
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:868:    to ``--jobs=$ncpus``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-869-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1468-
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1469:    *prefix* may contain the following path variables: ``$pkgid``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1470:    ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1471:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1472-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1484-    number to make it possible to install several versions of a program
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1485:    at once: ``program-suffix: $version``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1486-
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1487:    *suffix* may contain the following path variables: ``$pkgid``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1488:    ``$pkg``, ``$version``, ``$compiler``, ``$os``, ``$arch``, ``$abi``,
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1489:    ``$abitag``
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1490-
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1491-    The command line variant of this flag is
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1492:    ``--program-suffix='$version'``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1493-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1808-    A central index of Haddock API documentation (template cannot use
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:1809:    ``$pkgid``), which should be updated as documentation is built.
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-1810-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-2035-    [STRIKEOUT:The file to save build summaries. Valid variables which
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:2036:    can be used in the path are ``$pkgid``, ``$compiler``, ``$os`` and
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst:2037:    ``$arch``.] Not implemented yet.
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-local-build.rst-2038-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/file-format-changelog.rst-157-
ghc-8.10.2/libraries/Cabal/Cabal/doc/file-format-changelog.rst:158:* CPP Macros ``VERSION_$pkgname`` and ``MIN_VERSION_$pkgname`` are now
ghc-8.10.2/libraries/Cabal/Cabal/doc/file-format-changelog.rst-159-  also generated for the current package.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/file-format-changelog.rst-181-
ghc-8.10.2/libraries/Cabal/Cabal/doc/file-format-changelog.rst:182:* New CPP Macro ``MIN_TOOL_VERSION_$buildtool``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/file-format-changelog.rst-183-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-227-other packages. For executables it installs the program so that you can
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:228:run it (though you may first need to adjust your system's ``$PATH``).
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-229-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-1485-    Read dependency version bounds from the freeze file (``cabal.config``)
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:1486:    instead of the package description file (``$PACKAGENAME.cabal``).
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-1487-    ``--v1-freeze-file`` is an alias for this flag starting in Cabal 2.4.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-1498-    Read dependendency version bounds from the v2-style freeze file
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:1499:    related to the named project file (i.e., ``$PROJECTFILE.freeze``)
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-1500-    instead of the package desctription file. If multiple ``--project-file``
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-1589-    be run by other programs rather than the user. Private executables are
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:1590:    installed into `$libexecdir/$libexecsubdir`.
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-1591-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2289-    Cabal tries to make sure that all specified programs are atomically built and prepended
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:2290:    on the ``$PATH`` shell variable before building the component in question, but can only do
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2291-    so for Nix-style builds. Specifically:
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2294-    b) For old-style builds, only for internal dependencies [#old-style-build-tool-depends]_.
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:2295:       It's up to the user to provide needed executables in this case under `$PATH.`
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2296-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2326-    In the first two cases, the list entry is desugared into a :pkg-field:`build-tool-depends` entry.
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:2327:    In the first case, the entry is desugared into a :pkg-field:`build-tool-depends` entry by prefixing with ``$pkg:``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2328-    In the second case, it is desugared by looking up the package and executable name in a hard-coded table.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2445-    A list of header files from this package to be installed into
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:2446:    ``$libdir/includes`` when the package is installed. Files listed in
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-2447-    :pkg-field:`install-includes` should be found in relative to the top of the
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-3750-    - using Nix-style builds it's considered an error if you depend on a exe-only package via build-depends: the solver will refuse it.
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst:3751:    - it may or may not place the executable on ``$PATH``.
ghc-8.10.2/libraries/Cabal/Cabal/doc/developing-packages.rst-3752-    - it does not ensure the correct version of the package is installed, so you might end up overwriting versions with each other.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-integration.rst-8-
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-integration.rst:9:To enable Nix integration, simply pass the ``--enable-nix`` global option when you call ``cabal``. To use this option everywhere, edit your ``$HOME/.cabal/config`` file to include:
ghc-8.10.2/libraries/Cabal/Cabal/doc/nix-integration.rst-10-
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-54-    flavours to build and install from a .cabal file.
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md:55:  * `autoconfUserHooks` now passes `--host=$HOST` when cross-compiling
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-56-  * Introduce multiple public libraries feature
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-79-  * Implement `{cmm,asm}-{sources,options} buildinfo fields for
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md:80:    separate compilation of C-- and ASM source files (#6033).
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-81-  * Setting `debug-info` now implies `library-stripping: False` and
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-438-  * Read `builddir` option from `CABAL_BUILDDIR` environment variable.
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md:439:  * Add `--profiling-detail=$level` flag with a default for libraries
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-440-    and executables of `exported-functions` and `toplevel-functions`
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-457-  as an argument to `./Setup configure` (#3158).
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md:458:  * Macros `VERSION_$pkgname` and `MIN_VERSION_$pkgname` are now
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-459-  also generated for the current package. (#3235).
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-717-  * Default colour scheme for highlighted source code
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md:718:  * Default prefix for `--user` installs is now `$HOME/.cabal`
ghc-8.10.2/libraries/Cabal/Cabal/ChangeLog.md-719-  * All `.cabal` files are treaded as UTF-8 and must be valid
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Compat/Binary/Class.hs-469-             rep Seq.empty n get
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Compat/Binary/Class.hs:470:      where rep xs 0 _ = return $! xs
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Compat/Binary/Class.hs-471-            rep xs n g = xs `seq` n `seq` do
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Compat/Parsing.hs-202-manyTill :: Alternative m => m a -> m end -> m [a]
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Compat/Parsing.hs:203:manyTill p end = go where go = ([] <$ end) <|> ((:) <$> p <*> go)
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Compat/Parsing.hs-204-{-# INLINE manyTill #-}
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/Build.hs-376-
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/Build.hs:377:-- | Add extra ASM sources generated by preprocessing to build
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/Build.hs-378--- information.
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHCJS.hs-1360-This specifies the location of `integer-gmp` _in terms of_ the location of base
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHCJS.hs:1361:(using the `$ORIGIN`) variable. But here's the crux: when the static linker
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHCJS.hs-1362-attempts to verify that all symbols can be resolved, [**IT DOES NOT RESOLVE
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHCJS.hs:1363:`$ORIGIN`**](http://stackoverflow.com/questions/6323603/ld-using-rpath-origin-inside-a-shared-library-recursive).
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHCJS.hs-1364-As a consequence, it will not be able to resolve the symbols and report the
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs-707-
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs:708:  -- build any ASM sources
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs-709-  unless (not has_code || null (asmSources libBi)) $ do
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs-1579-This specifies the location of `integer-gmp` _in terms of_ the location of base
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs:1580:(using the `$ORIGIN`) variable. But here's the crux: when the static linker
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs-1581-attempts to verify that all symbols can be resolved, [**IT DOES NOT RESOLVE
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs:1582:`$ORIGIN`**](http://stackoverflow.com/questions/6323603/ld-using-rpath-origin-inside-a-shared-library-recursive).
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Simple/GHC.hs-1583-As a consequence, it will not be able to resolve the symbols and report the
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Fields/Lexer.hs-374-{-# INLINE alexIndexInt16OffAddr #-}
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Fields/Lexer.hs:375:alexIndexInt16OffAddr (AlexA# arr) off =
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Fields/Lexer.hs-376-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Fields/Lexer.hs-387-{-# INLINE alexIndexInt32OffAddr #-}
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Fields/Lexer.hs:388:alexIndexInt32OffAddr (AlexA# arr) off =
ghc-8.10.2/libraries/Cabal/Cabal/Distribution/Fields/Lexer.hs-389-#ifdef WORDS_BIGENDIAN
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-52-else
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-201-  if (eval "$as_required") 2>/dev/null; then :
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-326-      case $as_dir in #(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:327:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-328-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-399-  {
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:400:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-401-  }
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-406-# ----------------------------------------
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:407:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-408-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-469-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:470:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-471-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-697-  case $ac_option in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:698:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-699-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-741-  -disable-* | --disable-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:742:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-743-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-746-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:747:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-748-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-767-  -enable-* | --enable-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:768:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-769-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-772-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:773:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-774-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-980-  -with-* | --with-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:981:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-982-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-985-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:986:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-987-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-996-  -without-* | --without-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:997:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-998-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1001-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1002:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1003-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1034-  *=*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1035:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1036-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1055-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1056:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1057-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1077-    */ )
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1078:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1079-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1112-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1113:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1114-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1168-case $srcdir in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1169:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1170-esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1211-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1212:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1213:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1214-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1266-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1267:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1268-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1269:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1270-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1402-    *\'*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1403:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1404-    esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1485-      case $ac_val in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1486:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1487-      esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1500-	case $ac_val in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1501:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1502-	esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1620-    set,)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1621:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1622:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1623-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1631-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1632:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1633:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1634-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1651-    case $ac_new_val in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1652:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1653-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1804-'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1805:DEFS=`sed -n "$ac_script" confdefs.h`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1806-
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1813-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1814:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1815-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1880-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1881:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1882-  as_echo='print -r --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1883-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1884:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1885-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1887-else
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1888:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1889-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1897-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1898:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1899-      esac;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1974-# ----------------------------------------
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:1975:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-1976-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2046-  {
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:2047:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2048-  }
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2150-      case $as_dir in #(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:2151:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2152-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2263-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:2264:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2265-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2285-  --*=?*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:2286:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:2287:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2288-    ac_shift=:
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2290-  --*=)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure:2291:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure-2292-    ac_optarg=
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-52-else
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-201-  if (eval "$as_required") 2>/dev/null; then :
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-326-      case $as_dir in #(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:327:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-328-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-399-  {
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:400:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-401-  }
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-406-# ----------------------------------------
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:407:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-408-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-469-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:470:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-471-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-697-  case $ac_option in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:698:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-699-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-741-  -disable-* | --disable-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:742:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-743-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-746-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:747:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-748-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-767-  -enable-* | --enable-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:768:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-769-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-772-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:773:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-774-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-980-  -with-* | --with-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:981:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-982-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-985-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:986:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-987-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-996-  -without-* | --without-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:997:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-998-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1001-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1002:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1003-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1034-  *=*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1035:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1036-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1055-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1056:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1057-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1077-    */ )
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1078:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1079-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1112-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1113:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1114-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1168-case $srcdir in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1169:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1170-esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1211-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1212:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1213:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1214-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1266-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1267:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1268-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1269:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1270-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1402-    *\'*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1403:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1404-    esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1485-      case $ac_val in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1486:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1487-      esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1500-	case $ac_val in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1501:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1502-	esac
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1620-    set,)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1621:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1622:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1623-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1631-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1632:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1633:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1634-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1651-    case $ac_new_val in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1652:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1653-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1807-'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1808:DEFS=`sed -n "$ac_script" confdefs.h`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1809-
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1816-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1817:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1818-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1883-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1884:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1885-  as_echo='print -r --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1886-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1887:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1888-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1890-else
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1891:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1892-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1900-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1901:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1902-      esac;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1977-# ----------------------------------------
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:1978:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-1979-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2049-  {
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2050:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2051-  }
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2153-      case $as_dir in #(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2154:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2155-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2275-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2276:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2277-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2297-  --*=?*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2298:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2299:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2300-    ac_shift=:
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2302-  --*=)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2303:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2304-    ac_optarg=
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2326-    case $ac_optarg in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2327:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2328-    '') as_fn_error $? "missing file argument" ;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2442-fi
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2443:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2444-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2459-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2460:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2461-ac_delim='%!_!# '
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2465-
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2466:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2467-  if test $ac_delim_n = $ac_delim_num; then
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2627-      esac
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2628:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2629-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2686-*)
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2687:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2688-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2689:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2690-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2738-/@mandir@/p'
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2739:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2740-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2755-
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2756:# Neutralize VPATH when `$srcdir' = `.'.
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2757-# Shell code in configure.ac might set extrasub.
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2781-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure:2782:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
ghc-8.10.2/libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure-2783-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
ghc-8.10.2/libraries/Cabal/cabal-testsuite/tests/fail.test.hs-12-  --
ghc-8.10.2/libraries/Cabal/cabal-testsuite/tests/fail.test.hs:13:  -- note: we cannot use `fails $ do ...` here since that only checks that all
ghc-8.10.2/libraries/Cabal/cabal-testsuite/tests/fail.test.hs-14-  -- assertions fail. If there is no assertion in `m`, then `fails m` will *succeed*.
##############################################
ghc-8.10.2/libraries/time/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/time/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/time/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/time/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/time/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/time/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/time/configure-52-else
ghc-8.10.2/libraries/time/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/time/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/time/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/time/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/time/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/time/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/time/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
ghc-8.10.2/libraries/time/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
ghc-8.10.2/libraries/time/configure-327-      case $as_dir in #(
ghc-8.10.2/libraries/time/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/time/configure-329-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/time/configure-400-  {
ghc-8.10.2/libraries/time/configure:401:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/time/configure-402-  }
##############################################
ghc-8.10.2/libraries/time/configure-407-# ----------------------------------------
ghc-8.10.2/libraries/time/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/time/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/time/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/time/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/time/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/time/configure-751-  case $ac_option in
ghc-8.10.2/libraries/time/configure:752:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/time/configure-753-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/time/configure-795-  -disable-* | --disable-*)
ghc-8.10.2/libraries/time/configure:796:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/time/configure-797-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/time/configure-800-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/time/configure:801:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/time/configure-802-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/time/configure-821-  -enable-* | --enable-*)
ghc-8.10.2/libraries/time/configure:822:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/time/configure-823-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/time/configure-826-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/time/configure:827:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/time/configure-828-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/time/configure-1025-  -with-* | --with-*)
ghc-8.10.2/libraries/time/configure:1026:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/time/configure-1027-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/time/configure-1030-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/time/configure:1031:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/time/configure-1032-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/time/configure-1041-  -without-* | --without-*)
ghc-8.10.2/libraries/time/configure:1042:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/time/configure-1043-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/time/configure-1046-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/time/configure:1047:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/time/configure-1048-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/time/configure-1079-  *=*)
ghc-8.10.2/libraries/time/configure:1080:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/time/configure-1081-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/time/configure-1100-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/time/configure:1101:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/time/configure-1102-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/time/configure-1122-    */ )
ghc-8.10.2/libraries/time/configure:1123:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/time/configure-1124-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/time/configure-1157-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/time/configure:1158:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/time/configure-1159-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/time/configure-1213-case $srcdir in
ghc-8.10.2/libraries/time/configure:1214:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/time/configure-1215-esac
##############################################
ghc-8.10.2/libraries/time/configure-1256-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/time/configure:1257:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/time/configure:1258:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/time/configure-1259-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/time/configure-1329-*)
ghc-8.10.2/libraries/time/configure:1330:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/time/configure-1331-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/time/configure:1332:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/time/configure-1333-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/time/configure-1806-  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
ghc-8.10.2/libraries/time/configure:1807:  as_decl_name=`echo $2|sed 's/ *(.*//'`
ghc-8.10.2/libraries/time/configure:1808:  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
ghc-8.10.2/libraries/time/configure-1809-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
##############################################
ghc-8.10.2/libraries/time/configure-1920-    *\'*)
ghc-8.10.2/libraries/time/configure:1921:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/time/configure-1922-    esac
##############################################
ghc-8.10.2/libraries/time/configure-2003-      case $ac_val in
ghc-8.10.2/libraries/time/configure:2004:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/time/configure-2005-      esac
##############################################
ghc-8.10.2/libraries/time/configure-2018-	case $ac_val in
ghc-8.10.2/libraries/time/configure:2019:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/time/configure-2020-	esac
##############################################
ghc-8.10.2/libraries/time/configure-2138-    set,)
ghc-8.10.2/libraries/time/configure:2139:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/time/configure:2140:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/time/configure-2141-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/time/configure-2149-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/time/configure:2150:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/time/configure:2151:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/time/configure-2152-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/time/configure-2169-    case $ac_new_val in
ghc-8.10.2/libraries/time/configure:2170:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/time/configure-2171-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/time/configure-2560-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/libraries/time/configure:2561:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/libraries/time/configure-2562-
##############################################
ghc-8.10.2/libraries/time/configure-2604-	then :; else
ghc-8.10.2/libraries/time/configure:2605:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/time/configure-2606-	fi
##############################################
ghc-8.10.2/libraries/time/configure-2664-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/libraries/time/configure:2665:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/time/configure-2666-	  break;;
##############################################
ghc-8.10.2/libraries/time/configure-2773-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/libraries/time/configure:2774:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/libraries/time/configure-2775-       break;;
##############################################
ghc-8.10.2/libraries/time/configure-3162-  # Check for GNU $ac_path_GREP
ghc-8.10.2/libraries/time/configure:3163:case `"$ac_path_GREP" --version 2>&1` in
ghc-8.10.2/libraries/time/configure-3164-*GNU*)
##############################################
ghc-8.10.2/libraries/time/configure-3228-  # Check for GNU $ac_path_EGREP
ghc-8.10.2/libraries/time/configure:3229:case `"$ac_path_EGREP" --version 2>&1` in
ghc-8.10.2/libraries/time/configure-3230-*GNU*)
##############################################
ghc-8.10.2/libraries/time/configure-3389-do :
ghc-8.10.2/libraries/time/configure:3390:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/time/configure-3391-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
ghc-8.10.2/libraries/time/configure-3394-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/time/configure:3395:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/time/configure-3396-_ACEOF
##############################################
ghc-8.10.2/libraries/time/configure-3481-do :
ghc-8.10.2/libraries/time/configure:3482:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/time/configure-3483-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/time/configure-3485-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/time/configure:3486:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/time/configure-3487-_ACEOF
##############################################
ghc-8.10.2/libraries/time/configure-3775-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/time/configure:3776:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/time/configure-3777-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/time/configure-3842-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/time/configure:3843:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/time/configure-3844-  as_echo='print -r --'
ghc-8.10.2/libraries/time/configure-3845-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/time/configure:3846:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/time/configure-3847-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/time/configure-3849-else
ghc-8.10.2/libraries/time/configure:3850:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/time/configure-3851-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/time/configure-3859-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/time/configure:3860:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/time/configure-3861-      esac;
##############################################
ghc-8.10.2/libraries/time/configure-3936-# ----------------------------------------
ghc-8.10.2/libraries/time/configure:3937:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/time/configure-3938-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/time/configure-4008-  {
ghc-8.10.2/libraries/time/configure:4009:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/time/configure-4010-  }
##############################################
ghc-8.10.2/libraries/time/configure-4112-      case $as_dir in #(
ghc-8.10.2/libraries/time/configure:4113:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/time/configure-4114-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/time/configure-4234-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/time/configure:4235:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/time/configure-4236-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/time/configure-4256-  --*=?*)
ghc-8.10.2/libraries/time/configure:4257:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/time/configure:4258:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/time/configure-4259-    ac_shift=:
##############################################
ghc-8.10.2/libraries/time/configure-4261-  --*=)
ghc-8.10.2/libraries/time/configure:4262:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/time/configure-4263-    ac_optarg=
##############################################
ghc-8.10.2/libraries/time/configure-4285-    case $ac_optarg in
ghc-8.10.2/libraries/time/configure:4286:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/time/configure-4287-    esac
##############################################
ghc-8.10.2/libraries/time/configure-4407-for ac_last_try in false false :; do
ghc-8.10.2/libraries/time/configure:4408:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
ghc-8.10.2/libraries/time/configure-4409-  if test -z "$ac_tt"; then
##############################################
ghc-8.10.2/libraries/time/configure-4539-      esac
ghc-8.10.2/libraries/time/configure:4540:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/time/configure-4541-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/time/configure-4598-*)
ghc-8.10.2/libraries/time/configure:4599:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/time/configure-4600-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/time/configure:4601:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/time/configure-4602-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/base/Data/Foldable.hs-164-    foldr' f z0 xs = foldl f' id xs z0
ghc-8.10.2/libraries/base/Data/Foldable.hs:165:      where f' k x z = k $! f x z
ghc-8.10.2/libraries/base/Data/Foldable.hs-166-
##############################################
ghc-8.10.2/libraries/base/Data/Foldable.hs-212-    foldl' f z0 xs = foldr f' id xs z0
ghc-8.10.2/libraries/base/Data/Foldable.hs:213:      where f' x k z = k $! f z x
ghc-8.10.2/libraries/base/Data/Foldable.hs-214-
##############################################
ghc-8.10.2/libraries/base/changelog.md-105-
ghc-8.10.2/libraries/base/changelog.md:106:  * `($!)` is now representation-polymorphic like `($)`.
ghc-8.10.2/libraries/base/changelog.md-107-
##############################################
ghc-8.10.2/libraries/base/changelog.md-528-
ghc-8.10.2/libraries/base/changelog.md:529:  * Add `Control.Monad.(<$!>)` as a strict version of `(<$>)`
ghc-8.10.2/libraries/base/changelog.md-530-
##############################################
ghc-8.10.2/libraries/base/changelog.md-764-
ghc-8.10.2/libraries/base/changelog.md:765:  * `Data.Functor` now exports `($>)` and `void`.
ghc-8.10.2/libraries/base/changelog.md-766-
##############################################
ghc-8.10.2/libraries/base/config.guess-34-
ghc-8.10.2/libraries/base/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/libraries/base/config.guess-36-
##############################################
ghc-8.10.2/libraries/base/config.guess-105-    # shellcheck disable=SC2039
ghc-8.10.2/libraries/base/config.guess:106:    { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
ghc-8.10.2/libraries/base/config.guess-107-	{ test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } ||
##############################################
ghc-8.10.2/libraries/base/config.guess-155-	EOF
ghc-8.10.2/libraries/base/config.guess:156:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
ghc-8.10.2/libraries/base/config.guess-157-
##############################################
ghc-8.10.2/libraries/base/config.guess-192-	    earmv*)
ghc-8.10.2/libraries/base/config.guess:193:		arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
ghc-8.10.2/libraries/base/config.guess:194:		endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
ghc-8.10.2/libraries/base/config.guess-195-		machine="${arch}${endian}"-unknown
##############################################
ghc-8.10.2/libraries/base/config.guess-224-		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
ghc-8.10.2/libraries/base/config.guess:225:		abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
ghc-8.10.2/libraries/base/config.guess-226-		;;
##############################################
ghc-8.10.2/libraries/base/config.guess-237-	    *)
ghc-8.10.2/libraries/base/config.guess:238:		release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
ghc-8.10.2/libraries/base/config.guess-239-		;;
##############################################
ghc-8.10.2/libraries/base/config.guess-290-	*4.0)
ghc-8.10.2/libraries/base/config.guess:291:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
ghc-8.10.2/libraries/base/config.guess-292-		;;
ghc-8.10.2/libraries/base/config.guess-293-	*5.*)
ghc-8.10.2/libraries/base/config.guess:294:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
ghc-8.10.2/libraries/base/config.guess-295-		;;
##############################################
ghc-8.10.2/libraries/base/config.guess-300-	# types through head -n 1, so we only detect the type of CPU 0.
ghc-8.10.2/libraries/base/config.guess:301:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
ghc-8.10.2/libraries/base/config.guess-302-	case "$ALPHA_CPU_TYPE" in
##############################################
ghc-8.10.2/libraries/base/config.guess-338-	# 1.2 uses "1.2" for uname -r.
ghc-8.10.2/libraries/base/config.guess:339:	echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
ghc-8.10.2/libraries/base/config.guess-340-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
ghc-8.10.2/libraries/base/config.guess-389-    s390x:SunOS:*:*)
ghc-8.10.2/libraries/base/config.guess:390:	echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/base/config.guess-391-	exit ;;
ghc-8.10.2/libraries/base/config.guess-392-    sun4H:SunOS:5.*:*)
ghc-8.10.2/libraries/base/config.guess:393:	echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/base/config.guess-394-	exit ;;
ghc-8.10.2/libraries/base/config.guess-395-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
ghc-8.10.2/libraries/base/config.guess:396:	echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/base/config.guess-397-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-414-	fi
ghc-8.10.2/libraries/base/config.guess:415:	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/base/config.guess-416-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-420-	# it's likely to be more like Solaris than SunOS4.
ghc-8.10.2/libraries/base/config.guess:421:	echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/base/config.guess-422-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-429-	# Japanese Language versions have a version number like `4.1.3-JL'.
ghc-8.10.2/libraries/base/config.guess:430:	echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
ghc-8.10.2/libraries/base/config.guess-431-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-435-    sun*:*:4.2BSD:*)
ghc-8.10.2/libraries/base/config.guess:436:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
ghc-8.10.2/libraries/base/config.guess-437-	test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
##############################################
ghc-8.10.2/libraries/base/config.guess-517-	$CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
ghc-8.10.2/libraries/base/config.guess:518:	  dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
ghc-8.10.2/libraries/base/config.guess:519:	  SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
ghc-8.10.2/libraries/base/config.guess-520-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/base/config.guess-573-    *:IRIX*:*:*)
ghc-8.10.2/libraries/base/config.guess:574:	echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
ghc-8.10.2/libraries/base/config.guess-575-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-603-EOF
ghc-8.10.2/libraries/base/config.guess:604:		if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
ghc-8.10.2/libraries/base/config.guess-605-		then
##############################################
ghc-8.10.2/libraries/base/config.guess-616-    *:AIX:*:[4567])
ghc-8.10.2/libraries/base/config.guess:617:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
ghc-8.10.2/libraries/base/config.guess-618-	if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
##############################################
ghc-8.10.2/libraries/base/config.guess-652-    9000/[34678]??:HP-UX:*:*)
ghc-8.10.2/libraries/base/config.guess:653:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/libraries/base/config.guess-654-	case "$UNAME_MACHINE" in
##############################################
ghc-8.10.2/libraries/base/config.guess-706-EOF
ghc-8.10.2/libraries/base/config.guess:707:		    (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
ghc-8.10.2/libraries/base/config.guess-708-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
ghc-8.10.2/libraries/base/config.guess-734-    ia64:HP-UX:*:*)
ghc-8.10.2/libraries/base/config.guess:735:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/libraries/base/config.guess-736-	echo ia64-hp-hpux"$HPUX_REV"
##############################################
ghc-8.10.2/libraries/base/config.guess-764-EOF
ghc-8.10.2/libraries/base/config.guess:765:	$CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
ghc-8.10.2/libraries/base/config.guess-766-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/base/config.guess-835-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/libraries/base/config.guess:836:	FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
ghc-8.10.2/libraries/base/config.guess-837-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/libraries/base/config.guess-840-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/libraries/base/config.guess:841:	FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
ghc-8.10.2/libraries/base/config.guess-842-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/libraries/base/config.guess-858-	then
ghc-8.10.2/libraries/base/config.guess:859:	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi
ghc-8.10.2/libraries/base/config.guess-860-	else
ghc-8.10.2/libraries/base/config.guess:861:	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf
ghc-8.10.2/libraries/base/config.guess-862-	fi
##############################################
ghc-8.10.2/libraries/base/config.guess-871-	esac
ghc-8.10.2/libraries/base/config.guess:872:	echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
ghc-8.10.2/libraries/base/config.guess-873-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-907-    prep*:SunOS:5.*:*)
ghc-8.10.2/libraries/base/config.guess:908:	echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
ghc-8.10.2/libraries/base/config.guess-909-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-911-	# the GNU system
ghc-8.10.2/libraries/base/config.guess:912:	echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
ghc-8.10.2/libraries/base/config.guess-913-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-915-	# other systems with GNU libc and userland
ghc-8.10.2/libraries/base/config.guess:916:	echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
ghc-8.10.2/libraries/base/config.guess-917-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-1037-EOF
ghc-8.10.2/libraries/base/config.guess:1038:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'`"
ghc-8.10.2/libraries/base/config.guess-1039-	test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; }
##############################################
ghc-8.10.2/libraries/base/config.guess-1137-    i*86:*:4.*:*)
ghc-8.10.2/libraries/base/config.guess:1138:	UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
ghc-8.10.2/libraries/base/config.guess-1139-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
ghc-8.10.2/libraries/base/config.guess-1440-    *:DragonFly:*:*)
ghc-8.10.2/libraries/base/config.guess:1441:	echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
ghc-8.10.2/libraries/base/config.guess-1442-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-1453-    i*86:skyos:*:*)
ghc-8.10.2/libraries/base/config.guess:1454:	echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
ghc-8.10.2/libraries/base/config.guess-1455-	exit ;;
##############################################
ghc-8.10.2/libraries/base/config.guess-1603-
ghc-8.10.2/libraries/base/config.guess:1604:$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` &&
ghc-8.10.2/libraries/base/config.guess-1605-	{ echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/base/Control/Arrow.hs-191-  {-# INLINE mzero #-}
ghc-8.10.2/libraries/base/Control/Arrow.hs:192:  Kleisli f `mplus` Kleisli g = Kleisli $ \x -> f x `mplus` g x
ghc-8.10.2/libraries/base/Control/Arrow.hs-193-  {-# INLINE mplus #-}
##############################################
ghc-8.10.2/libraries/base/config.sub-52-
ghc-8.10.2/libraries/base/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/libraries/base/config.sub-54-
##############################################
ghc-8.10.2/libraries/base/config.sub-768-	i*86v32)
ghc-8.10.2/libraries/base/config.sub:769:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/base/config.sub-770-		vendor=pc
##############################################
ghc-8.10.2/libraries/base/config.sub-773-	i*86v4*)
ghc-8.10.2/libraries/base/config.sub:774:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/base/config.sub-775-		vendor=pc
##############################################
ghc-8.10.2/libraries/base/config.sub-778-	i*86v)
ghc-8.10.2/libraries/base/config.sub:779:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/base/config.sub-780-		vendor=pc
##############################################
ghc-8.10.2/libraries/base/config.sub-783-	i*86sol2)
ghc-8.10.2/libraries/base/config.sub:784:		cpu=`echo "$1" | sed -e 's/86.*/86/'`
ghc-8.10.2/libraries/base/config.sub-785-		vendor=pc
##############################################
ghc-8.10.2/libraries/base/config.sub-916-		cpu=sparc
ghc-8.10.2/libraries/base/config.sub:917:		vendor=`echo "$basic_machine" | sed 's/-.*//'`
ghc-8.10.2/libraries/base/config.sub-918-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1083-	sh5e[lb]-*)
ghc-8.10.2/libraries/base/config.sub:1084:		cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'`
ghc-8.10.2/libraries/base/config.sub-1085-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1101-	xscale-* | xscalee[bl]-*)
ghc-8.10.2/libraries/base/config.sub:1102:		cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
ghc-8.10.2/libraries/base/config.sub-1103-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1256-			*)
ghc-8.10.2/libraries/base/config.sub:1257:				echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
ghc-8.10.2/libraries/base/config.sub-1258-				exit 1
##############################################
ghc-8.10.2/libraries/base/config.sub-1290-	solaris1 | solaris1.*)
ghc-8.10.2/libraries/base/config.sub:1291:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
ghc-8.10.2/libraries/base/config.sub-1292-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1299-	gnu/linux*)
ghc-8.10.2/libraries/base/config.sub:1300:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
ghc-8.10.2/libraries/base/config.sub-1301-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1322-	sco3.2.[4-9]*)
ghc-8.10.2/libraries/base/config.sub:1323:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
ghc-8.10.2/libraries/base/config.sub-1324-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1386-	nto*)
ghc-8.10.2/libraries/base/config.sub:1387:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
ghc-8.10.2/libraries/base/config.sub-1388-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1396-	linux*)
ghc-8.10.2/libraries/base/config.sub:1397:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
ghc-8.10.2/libraries/base/config.sub-1398-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1408-	mac*)
ghc-8.10.2/libraries/base/config.sub:1409:		os=`echo "$os" | sed -e 's|mac|macos|'`
ghc-8.10.2/libraries/base/config.sub-1410-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1417-	sunos5*)
ghc-8.10.2/libraries/base/config.sub:1418:		os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
ghc-8.10.2/libraries/base/config.sub-1419-		;;
ghc-8.10.2/libraries/base/config.sub-1420-	sunos6*)
ghc-8.10.2/libraries/base/config.sub:1421:		os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
ghc-8.10.2/libraries/base/config.sub-1422-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1454-	sinix5.*)
ghc-8.10.2/libraries/base/config.sub:1455:		os=`echo $os | sed -e 's|sinix|sysv|'`
ghc-8.10.2/libraries/base/config.sub-1456-		;;
##############################################
ghc-8.10.2/libraries/base/config.sub-1514-	*)
ghc-8.10.2/libraries/base/config.sub:1515:		echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
ghc-8.10.2/libraries/base/config.sub-1516-		exit 1
##############################################
ghc-8.10.2/libraries/base/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/base/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/base/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/base/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/base/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/base/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/base/configure-52-else
ghc-8.10.2/libraries/base/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/base/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/base/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/base/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/base/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/base/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/base/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
ghc-8.10.2/libraries/base/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
ghc-8.10.2/libraries/base/configure-327-      case $as_dir in #(
ghc-8.10.2/libraries/base/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/base/configure-329-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/base/configure-400-  {
ghc-8.10.2/libraries/base/configure:401:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/base/configure-402-  }
##############################################
ghc-8.10.2/libraries/base/configure-407-# ----------------------------------------
ghc-8.10.2/libraries/base/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/base/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/base/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/base/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/base/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/base/configure-768-  case $ac_option in
ghc-8.10.2/libraries/base/configure:769:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/base/configure-770-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/base/configure-812-  -disable-* | --disable-*)
ghc-8.10.2/libraries/base/configure:813:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/base/configure-814-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/base/configure-817-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/base/configure:818:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/base/configure-819-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/base/configure-838-  -enable-* | --enable-*)
ghc-8.10.2/libraries/base/configure:839:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/base/configure-840-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/base/configure-843-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/base/configure:844:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/base/configure-845-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/base/configure-1042-  -with-* | --with-*)
ghc-8.10.2/libraries/base/configure:1043:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/base/configure-1044-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/base/configure-1047-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/base/configure:1048:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/base/configure-1049-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/base/configure-1058-  -without-* | --without-*)
ghc-8.10.2/libraries/base/configure:1059:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/base/configure-1060-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/base/configure-1063-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/base/configure:1064:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/base/configure-1065-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/base/configure-1096-  *=*)
ghc-8.10.2/libraries/base/configure:1097:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/base/configure-1098-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/base/configure-1117-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/base/configure:1118:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/base/configure-1119-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/base/configure-1139-    */ )
ghc-8.10.2/libraries/base/configure:1140:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/base/configure-1141-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/base/configure-1174-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/base/configure:1175:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/base/configure-1176-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/base/configure-1230-case $srcdir in
ghc-8.10.2/libraries/base/configure:1231:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/base/configure-1232-esac
##############################################
ghc-8.10.2/libraries/base/configure-1273-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/base/configure:1274:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/base/configure:1275:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/base/configure-1276-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/base/configure-1358-*)
ghc-8.10.2/libraries/base/configure:1359:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/base/configure-1360-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/base/configure:1361:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/base/configure-1362-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/base/configure-2015-  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
ghc-8.10.2/libraries/base/configure:2016:  as_decl_name=`echo $2|sed 's/ *(.*//'`
ghc-8.10.2/libraries/base/configure:2017:  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
ghc-8.10.2/libraries/base/configure-2018-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
##############################################
ghc-8.10.2/libraries/base/configure-2129-    *\'*)
ghc-8.10.2/libraries/base/configure:2130:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/base/configure-2131-    esac
##############################################
ghc-8.10.2/libraries/base/configure-2212-      case $ac_val in
ghc-8.10.2/libraries/base/configure:2213:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/base/configure-2214-      esac
##############################################
ghc-8.10.2/libraries/base/configure-2227-	case $ac_val in
ghc-8.10.2/libraries/base/configure:2228:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/base/configure-2229-	esac
##############################################
ghc-8.10.2/libraries/base/configure-2347-    set,)
ghc-8.10.2/libraries/base/configure:2348:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/base/configure:2349:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/base/configure-2350-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/base/configure-2358-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/base/configure:2359:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/base/configure:2360:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/base/configure-2361-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/base/configure-2378-    case $ac_new_val in
ghc-8.10.2/libraries/base/configure:2379:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/base/configure-2380-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/base/configure-2452-test "x$ac_build_alias" = x &&
ghc-8.10.2/libraries/base/configure:2453:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
ghc-8.10.2/libraries/base/configure-2454-test "x$ac_build_alias" = x &&
ghc-8.10.2/libraries/base/configure-2455-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
ghc-8.10.2/libraries/base/configure:2456:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
ghc-8.10.2/libraries/base/configure-2457-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/base/configure-2476-IFS=$ac_save_IFS
ghc-8.10.2/libraries/base/configure:2477:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/base/configure-2478-
##############################################
ghc-8.10.2/libraries/base/configure-2487-else
ghc-8.10.2/libraries/base/configure:2488:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
ghc-8.10.2/libraries/base/configure-2489-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/base/configure-2509-IFS=$ac_save_IFS
ghc-8.10.2/libraries/base/configure:2510:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/base/configure-2511-
##############################################
ghc-8.10.2/libraries/base/configure-2520-else
ghc-8.10.2/libraries/base/configure:2521:  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
ghc-8.10.2/libraries/base/configure-2522-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/base/configure-2542-IFS=$ac_save_IFS
ghc-8.10.2/libraries/base/configure:2543:case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/base/configure-2544-
##############################################
ghc-8.10.2/libraries/base/configure-2898-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/libraries/base/configure:2899:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/libraries/base/configure-2900-
##############################################
ghc-8.10.2/libraries/base/configure-2942-	then :; else
ghc-8.10.2/libraries/base/configure:2943:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/base/configure-2944-	fi
##############################################
ghc-8.10.2/libraries/base/configure-3002-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/libraries/base/configure:3003:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/base/configure-3004-	  break;;
##############################################
ghc-8.10.2/libraries/base/configure-3111-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/libraries/base/configure:3112:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/libraries/base/configure-3113-       break;;
##############################################
ghc-8.10.2/libraries/base/configure-3499-  # Check for GNU $ac_path_GREP
ghc-8.10.2/libraries/base/configure:3500:case `"$ac_path_GREP" --version 2>&1` in
ghc-8.10.2/libraries/base/configure-3501-*GNU*)
##############################################
ghc-8.10.2/libraries/base/configure-3565-  # Check for GNU $ac_path_EGREP
ghc-8.10.2/libraries/base/configure:3566:case `"$ac_path_EGREP" --version 2>&1` in
ghc-8.10.2/libraries/base/configure-3567-*GNU*)
##############################################
ghc-8.10.2/libraries/base/configure-3726-do :
ghc-8.10.2/libraries/base/configure:3727:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/base/configure-3728-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
ghc-8.10.2/libraries/base/configure-3731-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/base/configure:3732:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/base/configure-3733-_ACEOF
##############################################
ghc-8.10.2/libraries/base/configure-3940-do :
ghc-8.10.2/libraries/base/configure:3941:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/base/configure-3942-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/base/configure-3944-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/base/configure:3945:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/base/configure-3946-_ACEOF
##############################################
ghc-8.10.2/libraries/base/configure-4247-do :
ghc-8.10.2/libraries/base/configure:4248:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/base/configure-4249-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/base/configure-4251-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/base/configure:4252:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/base/configure-4253-_ACEOF
##############################################
ghc-8.10.2/libraries/base/configure-4259-do :
ghc-8.10.2/libraries/base/configure:4260:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/base/configure-4261-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/base/configure-4263-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/base/configure:4264:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/base/configure-4265-_ACEOF
##############################################
ghc-8.10.2/libraries/base/configure-4272-do :
ghc-8.10.2/libraries/base/configure:4273:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/base/configure-4274-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/base/configure-4276-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/base/configure:4277:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/base/configure-4278-_ACEOF
##############################################
ghc-8.10.2/libraries/base/configure-31971-do
ghc-8.10.2/libraries/base/configure:31972:as_fp_Cache=`$as_echo "fp_cv_const_$fp_const_name" | $as_tr_sh`
ghc-8.10.2/libraries/base/configure-31973-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking value of $fp_const_name" >&5
##############################################
ghc-8.10.2/libraries/base/configure-31992-cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/base/configure:31993:#define `$as_echo "CONST_$fp_const_name" | $as_tr_cpp` `eval 'as_val=${'$as_fp_Cache'};$as_echo "$as_val"'`
ghc-8.10.2/libraries/base/configure-31994-_ACEOF
##############################################
ghc-8.10.2/libraries/base/configure-32001-do
ghc-8.10.2/libraries/base/configure:32002:as_fp_Cache=`$as_echo "fp_cv_const_$fp_const_name" | $as_tr_sh`
ghc-8.10.2/libraries/base/configure-32003-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking value of $fp_const_name" >&5
##############################################
ghc-8.10.2/libraries/base/configure-32024-cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/base/configure:32025:#define `$as_echo "CONST_$fp_const_name" | $as_tr_cpp` `eval 'as_val=${'$as_fp_Cache'};$as_echo "$as_val"'`
ghc-8.10.2/libraries/base/configure-32026-_ACEOF
##############################################
ghc-8.10.2/libraries/base/configure-32335-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/base/configure:32336:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/base/configure-32337-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/base/configure-32402-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/base/configure:32403:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/base/configure-32404-  as_echo='print -r --'
ghc-8.10.2/libraries/base/configure-32405-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/base/configure:32406:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/base/configure-32407-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/base/configure-32409-else
ghc-8.10.2/libraries/base/configure:32410:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/base/configure-32411-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/base/configure-32419-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/base/configure:32420:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/base/configure-32421-      esac;
##############################################
ghc-8.10.2/libraries/base/configure-32496-# ----------------------------------------
ghc-8.10.2/libraries/base/configure:32497:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/base/configure-32498-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/base/configure-32568-  {
ghc-8.10.2/libraries/base/configure:32569:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/base/configure-32570-  }
##############################################
ghc-8.10.2/libraries/base/configure-32672-      case $as_dir in #(
ghc-8.10.2/libraries/base/configure:32673:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/base/configure-32674-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/base/configure-32803-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/base/configure:32804:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/base/configure-32805-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/base/configure-32825-  --*=?*)
ghc-8.10.2/libraries/base/configure:32826:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/base/configure:32827:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/base/configure-32828-    ac_shift=:
##############################################
ghc-8.10.2/libraries/base/configure-32830-  --*=)
ghc-8.10.2/libraries/base/configure:32831:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/base/configure-32832-    ac_optarg=
##############################################
ghc-8.10.2/libraries/base/configure-32854-    case $ac_optarg in
ghc-8.10.2/libraries/base/configure:32855:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/base/configure-32856-    '') as_fn_error $? "missing file argument" ;;
##############################################
ghc-8.10.2/libraries/base/configure-32862-    case $ac_optarg in
ghc-8.10.2/libraries/base/configure:32863:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/base/configure-32864-    esac
##############################################
ghc-8.10.2/libraries/base/configure-32984-fi
ghc-8.10.2/libraries/base/configure:32985:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
ghc-8.10.2/libraries/base/configure-32986-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
ghc-8.10.2/libraries/base/configure-33001-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ghc-8.10.2/libraries/base/configure:33002:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ghc-8.10.2/libraries/base/configure-33003-ac_delim='%!_!# '
##############################################
ghc-8.10.2/libraries/base/configure-33007-
ghc-8.10.2/libraries/base/configure:33008:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
ghc-8.10.2/libraries/base/configure-33009-  if test $ac_delim_n = $ac_delim_num; then
##############################################
ghc-8.10.2/libraries/base/configure-33145-for ac_last_try in false false :; do
ghc-8.10.2/libraries/base/configure:33146:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
ghc-8.10.2/libraries/base/configure-33147-  if test -z "$ac_tt"; then
##############################################
ghc-8.10.2/libraries/base/configure-33277-      esac
ghc-8.10.2/libraries/base/configure:33278:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/base/configure-33279-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/base/configure-33336-*)
ghc-8.10.2/libraries/base/configure:33337:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/base/configure-33338-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/base/configure:33339:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/base/configure-33340-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/base/configure-33388-/@mandir@/p'
ghc-8.10.2/libraries/base/configure:33389:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
ghc-8.10.2/libraries/base/configure-33390-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
ghc-8.10.2/libraries/base/configure-33405-
ghc-8.10.2/libraries/base/configure:33406:# Neutralize VPATH when `$srcdir' = `.'.
ghc-8.10.2/libraries/base/configure-33407-# Shell code in configure.ac might set extrasub.
##############################################
ghc-8.10.2/libraries/base/configure-33431-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
ghc-8.10.2/libraries/base/configure:33432:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
ghc-8.10.2/libraries/base/configure-33433-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
ghc-8.10.2/libraries/base/install-sh-229-      fi
ghc-8.10.2/libraries/base/install-sh:230:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
ghc-8.10.2/libraries/base/install-sh-231-    *)
##############################################
ghc-8.10.2/libraries/base/install-sh-276-      dstdir=$dst
ghc-8.10.2/libraries/base/install-sh:277:      dst=$dstdir/`basename "$src"`
ghc-8.10.2/libraries/base/install-sh-278-      dstdir_status=0
##############################################
ghc-8.10.2/libraries/base/install-sh-358-		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
ghc-8.10.2/libraries/base/install-sh:359:		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
ghc-8.10.2/libraries/base/install-sh-360-		   case $ls_ld_tmpdir in
##############################################
ghc-8.10.2/libraries/base/install-sh-365-		   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
ghc-8.10.2/libraries/base/install-sh:366:		     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
ghc-8.10.2/libraries/base/install-sh-367-		     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
ghc-8.10.2/libraries/base/install-sh-425-	    case $prefix in
ghc-8.10.2/libraries/base/install-sh:426:	      *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
ghc-8.10.2/libraries/base/install-sh-427-	      *) qprefix=$prefix;;
##############################################
ghc-8.10.2/libraries/base/install-sh-474-    if $copy_on_change &&
ghc-8.10.2/libraries/base/install-sh:475:       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
ghc-8.10.2/libraries/base/install-sh:476:       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
ghc-8.10.2/libraries/base/install-sh-477-
##############################################
ghc-8.10.2/libraries/base/cbits/ubconfc-21-echo "This is an automatically generated file: do not edit"
ghc-8.10.2/libraries/base/cbits/ubconfc:22:echo "Generated by `basename $0` at `date`"
ghc-8.10.2/libraries/base/cbits/ubconfc-23-echo "@generated"
##############################################
ghc-8.10.2/libraries/process/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/process/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/process/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/process/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/process/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/process/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/process/configure-52-else
ghc-8.10.2/libraries/process/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/process/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/process/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/process/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/process/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/process/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/process/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
ghc-8.10.2/libraries/process/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
ghc-8.10.2/libraries/process/configure-327-      case $as_dir in #(
ghc-8.10.2/libraries/process/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/process/configure-329-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/process/configure-400-  {
ghc-8.10.2/libraries/process/configure:401:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/process/configure-402-  }
##############################################
ghc-8.10.2/libraries/process/configure-407-# ----------------------------------------
ghc-8.10.2/libraries/process/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/process/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/process/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/process/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/process/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/process/configure-749-  case $ac_option in
ghc-8.10.2/libraries/process/configure:750:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/process/configure-751-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/process/configure-793-  -disable-* | --disable-*)
ghc-8.10.2/libraries/process/configure:794:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/process/configure-795-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/process/configure-798-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/process/configure:799:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/process/configure-800-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/process/configure-819-  -enable-* | --enable-*)
ghc-8.10.2/libraries/process/configure:820:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/process/configure-821-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/process/configure-824-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/process/configure:825:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/process/configure-826-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/process/configure-1023-  -with-* | --with-*)
ghc-8.10.2/libraries/process/configure:1024:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/process/configure-1025-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/process/configure-1028-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/process/configure:1029:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/process/configure-1030-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/process/configure-1039-  -without-* | --without-*)
ghc-8.10.2/libraries/process/configure:1040:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/process/configure-1041-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/process/configure-1044-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/process/configure:1045:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/process/configure-1046-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/process/configure-1077-  *=*)
ghc-8.10.2/libraries/process/configure:1078:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/process/configure-1079-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/process/configure-1098-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/process/configure:1099:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/process/configure-1100-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/process/configure-1120-    */ )
ghc-8.10.2/libraries/process/configure:1121:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/process/configure-1122-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/process/configure-1155-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/process/configure:1156:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/process/configure-1157-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/process/configure-1211-case $srcdir in
ghc-8.10.2/libraries/process/configure:1212:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/process/configure-1213-esac
##############################################
ghc-8.10.2/libraries/process/configure-1254-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/process/configure:1255:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/process/configure:1256:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/process/configure-1257-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/process/configure-1321-*)
ghc-8.10.2/libraries/process/configure:1322:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/process/configure-1323-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/process/configure:1324:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/process/configure-1325-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/process/configure-2046-    *\'*)
ghc-8.10.2/libraries/process/configure:2047:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/process/configure-2048-    esac
##############################################
ghc-8.10.2/libraries/process/configure-2129-      case $ac_val in
ghc-8.10.2/libraries/process/configure:2130:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/process/configure-2131-      esac
##############################################
ghc-8.10.2/libraries/process/configure-2144-	case $ac_val in
ghc-8.10.2/libraries/process/configure:2145:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/process/configure-2146-	esac
##############################################
ghc-8.10.2/libraries/process/configure-2264-    set,)
ghc-8.10.2/libraries/process/configure:2265:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/process/configure:2266:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/process/configure-2267-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/process/configure-2275-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/process/configure:2276:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/process/configure:2277:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/process/configure-2278-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/process/configure-2295-    case $ac_new_val in
ghc-8.10.2/libraries/process/configure:2296:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/process/configure-2297-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/process/configure-2675-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/libraries/process/configure:2676:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/libraries/process/configure-2677-
##############################################
ghc-8.10.2/libraries/process/configure-2719-	then :; else
ghc-8.10.2/libraries/process/configure:2720:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/process/configure-2721-	fi
##############################################
ghc-8.10.2/libraries/process/configure-2779-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/libraries/process/configure:2780:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/process/configure-2781-	  break;;
##############################################
ghc-8.10.2/libraries/process/configure-2888-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/libraries/process/configure:2889:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/libraries/process/configure-2890-       break;;
##############################################
ghc-8.10.2/libraries/process/configure-3277-  # Check for GNU $ac_path_GREP
ghc-8.10.2/libraries/process/configure:3278:case `"$ac_path_GREP" --version 2>&1` in
ghc-8.10.2/libraries/process/configure-3279-*GNU*)
##############################################
ghc-8.10.2/libraries/process/configure-3343-  # Check for GNU $ac_path_EGREP
ghc-8.10.2/libraries/process/configure:3344:case `"$ac_path_EGREP" --version 2>&1` in
ghc-8.10.2/libraries/process/configure-3345-*GNU*)
##############################################
ghc-8.10.2/libraries/process/configure-3504-do :
ghc-8.10.2/libraries/process/configure:3505:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/process/configure-3506-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
ghc-8.10.2/libraries/process/configure-3509-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/process/configure:3510:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/process/configure-3511-_ACEOF
##############################################
ghc-8.10.2/libraries/process/configure-3542-do :
ghc-8.10.2/libraries/process/configure:3543:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/process/configure-3544-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/process/configure-3546-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/process/configure:3547:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/process/configure-3548-_ACEOF
##############################################
ghc-8.10.2/libraries/process/configure-3745-do :
ghc-8.10.2/libraries/process/configure:3746:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/process/configure-3747-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/process/configure-3749-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/process/configure:3750:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/process/configure-3751-_ACEOF
##############################################
ghc-8.10.2/libraries/process/configure-3759-do :
ghc-8.10.2/libraries/process/configure:3760:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/process/configure-3761-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/process/configure-3763-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/process/configure:3764:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/process/configure-3765-_ACEOF
##############################################
ghc-8.10.2/libraries/process/configure-3772-do
ghc-8.10.2/libraries/process/configure:3773:as_fp_Cache=`$as_echo "fp_cv_const_$fp_const_name" | $as_tr_sh`
ghc-8.10.2/libraries/process/configure-3774-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking value of $fp_const_name" >&5
##############################################
ghc-8.10.2/libraries/process/configure-3791-cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/process/configure:3792:#define `$as_echo "CONST_$fp_const_name" | $as_tr_cpp` `eval 'as_val=${'$as_fp_Cache'};$as_echo "$as_val"'`
ghc-8.10.2/libraries/process/configure-3793-_ACEOF
##############################################
ghc-8.10.2/libraries/process/configure-3895-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/process/configure:3896:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/process/configure-3897-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/process/configure-3962-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/process/configure:3963:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/process/configure-3964-  as_echo='print -r --'
ghc-8.10.2/libraries/process/configure-3965-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/process/configure:3966:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/process/configure-3967-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/process/configure-3969-else
ghc-8.10.2/libraries/process/configure:3970:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/process/configure-3971-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/process/configure-3979-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/process/configure:3980:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/process/configure-3981-      esac;
##############################################
ghc-8.10.2/libraries/process/configure-4056-# ----------------------------------------
ghc-8.10.2/libraries/process/configure:4057:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/process/configure-4058-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/process/configure-4128-  {
ghc-8.10.2/libraries/process/configure:4129:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/process/configure-4130-  }
##############################################
ghc-8.10.2/libraries/process/configure-4232-      case $as_dir in #(
ghc-8.10.2/libraries/process/configure:4233:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/process/configure-4234-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/process/configure-4354-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/process/configure:4355:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/process/configure-4356-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/process/configure-4376-  --*=?*)
ghc-8.10.2/libraries/process/configure:4377:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/process/configure:4378:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/process/configure-4379-    ac_shift=:
##############################################
ghc-8.10.2/libraries/process/configure-4381-  --*=)
ghc-8.10.2/libraries/process/configure:4382:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/process/configure-4383-    ac_optarg=
##############################################
ghc-8.10.2/libraries/process/configure-4405-    case $ac_optarg in
ghc-8.10.2/libraries/process/configure:4406:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/process/configure-4407-    esac
##############################################
ghc-8.10.2/libraries/process/configure-4527-for ac_last_try in false false :; do
ghc-8.10.2/libraries/process/configure:4528:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
ghc-8.10.2/libraries/process/configure-4529-  if test -z "$ac_tt"; then
##############################################
ghc-8.10.2/libraries/process/configure-4659-      esac
ghc-8.10.2/libraries/process/configure:4660:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/process/configure-4661-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/process/configure-4718-*)
ghc-8.10.2/libraries/process/configure:4719:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/process/configure-4720-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/process/configure:4721:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/process/configure-4722-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/ghci/GHCi/Run.hs-97-    mapM (\(Box x) -> mkRemoteRef (HValue x)) clos
ghc-8.10.2/libraries/ghci/GHCi/Run.hs:98:  Seq ref -> tryEval (void $ evaluate =<< localRef ref)
ghc-8.10.2/libraries/ghci/GHCi/Run.hs-99-  _other -> error "GHCi.Run.run"
##############################################
ghc-8.10.2/libraries/binary/src/Data/Binary/Class.hs-669-             rep Seq.empty n get
ghc-8.10.2/libraries/binary/src/Data/Binary/Class.hs:670:      where rep xs 0 _ = return $! xs
ghc-8.10.2/libraries/binary/src/Data/Binary/Class.hs-671-            rep xs n g = xs `seq` n `seq` do
##############################################
ghc-8.10.2/libraries/unix/config.guess-34-
ghc-8.10.2/libraries/unix/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/libraries/unix/config.guess-36-
##############################################
ghc-8.10.2/libraries/unix/config.guess-102-: ${TMPDIR=/tmp} ;
ghc-8.10.2/libraries/unix/config.guess:103: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
ghc-8.10.2/libraries/unix/config.guess-104- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
##############################################
ghc-8.10.2/libraries/unix/config.guess-151-	EOF
ghc-8.10.2/libraries/unix/config.guess:152:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
ghc-8.10.2/libraries/unix/config.guess-153-	;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-181-	    earmv*)
ghc-8.10.2/libraries/unix/config.guess:182:		arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
ghc-8.10.2/libraries/unix/config.guess:183:		endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`
ghc-8.10.2/libraries/unix/config.guess-184-		machine=${arch}${endian}-unknown
##############################################
ghc-8.10.2/libraries/unix/config.guess-213-		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
ghc-8.10.2/libraries/unix/config.guess:214:		abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`
ghc-8.10.2/libraries/unix/config.guess-215-		;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-226-	    *)
ghc-8.10.2/libraries/unix/config.guess:227:		release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`
ghc-8.10.2/libraries/unix/config.guess-228-		;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-264-	*4.0)
ghc-8.10.2/libraries/unix/config.guess:265:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
ghc-8.10.2/libraries/unix/config.guess-266-		;;
ghc-8.10.2/libraries/unix/config.guess-267-	*5.*)
ghc-8.10.2/libraries/unix/config.guess:268:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
ghc-8.10.2/libraries/unix/config.guess-269-		;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-274-	# types through head -n 1, so we only detect the type of CPU 0.
ghc-8.10.2/libraries/unix/config.guess:275:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
ghc-8.10.2/libraries/unix/config.guess-276-	case "$ALPHA_CPU_TYPE" in
##############################################
ghc-8.10.2/libraries/unix/config.guess-312-	# 1.2 uses "1.2" for uname -r.
ghc-8.10.2/libraries/unix/config.guess:313:	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
ghc-8.10.2/libraries/unix/config.guess-314-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
ghc-8.10.2/libraries/unix/config.guess-372-    s390x:SunOS:*:*)
ghc-8.10.2/libraries/unix/config.guess:373:	echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
ghc-8.10.2/libraries/unix/config.guess-374-	exit ;;
ghc-8.10.2/libraries/unix/config.guess-375-    sun4H:SunOS:5.*:*)
ghc-8.10.2/libraries/unix/config.guess:376:	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
ghc-8.10.2/libraries/unix/config.guess-377-	exit ;;
ghc-8.10.2/libraries/unix/config.guess-378-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
ghc-8.10.2/libraries/unix/config.guess:379:	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
ghc-8.10.2/libraries/unix/config.guess-380-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-397-	fi
ghc-8.10.2/libraries/unix/config.guess:398:	echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
ghc-8.10.2/libraries/unix/config.guess-399-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-403-	# it's likely to be more like Solaris than SunOS4.
ghc-8.10.2/libraries/unix/config.guess:404:	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
ghc-8.10.2/libraries/unix/config.guess-405-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-412-	# Japanese Language versions have a version number like `4.1.3-JL'.
ghc-8.10.2/libraries/unix/config.guess:413:	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
ghc-8.10.2/libraries/unix/config.guess-414-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-418-    sun*:*:4.2BSD:*)
ghc-8.10.2/libraries/unix/config.guess:419:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
ghc-8.10.2/libraries/unix/config.guess-420-	test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3
##############################################
ghc-8.10.2/libraries/unix/config.guess-500-	$CC_FOR_BUILD -o $dummy $dummy.c &&
ghc-8.10.2/libraries/unix/config.guess:501:	  dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
ghc-8.10.2/libraries/unix/config.guess:502:	  SYSTEM_NAME=`$dummy $dummyarg` &&
ghc-8.10.2/libraries/unix/config.guess-503-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/unix/config.guess-556-    *:IRIX*:*:*)
ghc-8.10.2/libraries/unix/config.guess:557:	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
ghc-8.10.2/libraries/unix/config.guess-558-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-586-EOF
ghc-8.10.2/libraries/unix/config.guess:587:		if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
ghc-8.10.2/libraries/unix/config.guess-588-		then
##############################################
ghc-8.10.2/libraries/unix/config.guess-599-    *:AIX:*:[4567])
ghc-8.10.2/libraries/unix/config.guess:600:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
ghc-8.10.2/libraries/unix/config.guess-601-	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
##############################################
ghc-8.10.2/libraries/unix/config.guess-635-    9000/[34678]??:HP-UX:*:*)
ghc-8.10.2/libraries/unix/config.guess:636:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/libraries/unix/config.guess-637-	case "${UNAME_MACHINE}" in
##############################################
ghc-8.10.2/libraries/unix/config.guess-689-EOF
ghc-8.10.2/libraries/unix/config.guess:690:		    (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
ghc-8.10.2/libraries/unix/config.guess-691-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
ghc-8.10.2/libraries/unix/config.guess-717-    ia64:HP-UX:*:*)
ghc-8.10.2/libraries/unix/config.guess:718:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
ghc-8.10.2/libraries/unix/config.guess-719-	echo ia64-hp-hpux${HPUX_REV}
##############################################
ghc-8.10.2/libraries/unix/config.guess-747-EOF
ghc-8.10.2/libraries/unix/config.guess:748:	$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
ghc-8.10.2/libraries/unix/config.guess-749-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
ghc-8.10.2/libraries/unix/config.guess-818-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/libraries/unix/config.guess:819:	FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
ghc-8.10.2/libraries/unix/config.guess-820-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/libraries/unix/config.guess-823-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
ghc-8.10.2/libraries/unix/config.guess:824:	FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
ghc-8.10.2/libraries/unix/config.guess-825-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
ghc-8.10.2/libraries/unix/config.guess-843-	esac
ghc-8.10.2/libraries/unix/config.guess:844:	echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
ghc-8.10.2/libraries/unix/config.guess-845-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-898-    prep*:SunOS:5.*:*)
ghc-8.10.2/libraries/unix/config.guess:899:	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
ghc-8.10.2/libraries/unix/config.guess-900-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-902-	# the GNU system
ghc-8.10.2/libraries/unix/config.guess:903:	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
ghc-8.10.2/libraries/unix/config.guess-904-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-906-	# other systems with GNU libc and userland
ghc-8.10.2/libraries/unix/config.guess:907:	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
ghc-8.10.2/libraries/unix/config.guess-908-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-1000-EOF
ghc-8.10.2/libraries/unix/config.guess:1001:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
ghc-8.10.2/libraries/unix/config.guess-1002-	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
##############################################
ghc-8.10.2/libraries/unix/config.guess-1100-    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
ghc-8.10.2/libraries/unix/config.guess:1101:	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
ghc-8.10.2/libraries/unix/config.guess-1102-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
ghc-8.10.2/libraries/unix/config.guess-1303-	fi
ghc-8.10.2/libraries/unix/config.guess:1304:	if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
ghc-8.10.2/libraries/unix/config.guess-1305-	    if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
##############################################
ghc-8.10.2/libraries/unix/config.guess-1391-    *:DragonFly:*:*)
ghc-8.10.2/libraries/unix/config.guess:1392:	echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
ghc-8.10.2/libraries/unix/config.guess-1393-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/config.guess-1404-    i*86:skyos:*:*)
ghc-8.10.2/libraries/unix/config.guess:1405:	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`
ghc-8.10.2/libraries/unix/config.guess-1406-	exit ;;
##############################################
ghc-8.10.2/libraries/unix/System/Posix/DynamicLinker/Module.hsc-75-moduleOpen file flags = do
ghc-8.10.2/libraries/unix/System/Posix/DynamicLinker/Module.hsc:76:  modPtr <- withFilePath file $ \ modAddr -> c_dlopen modAddr (packRTLDFlags flags)
ghc-8.10.2/libraries/unix/System/Posix/DynamicLinker/Module.hsc-77-  if (modPtr == nullPtr)
##############################################
ghc-8.10.2/libraries/unix/System/Posix/DynamicLinker/Module/ByteString.hsc-75-moduleOpen file flags = do
ghc-8.10.2/libraries/unix/System/Posix/DynamicLinker/Module/ByteString.hsc:76:  modPtr <- withFilePath file $ \ modAddr -> c_dlopen modAddr (packRTLDFlags flags)
ghc-8.10.2/libraries/unix/System/Posix/DynamicLinker/Module/ByteString.hsc-77-  if (modPtr == nullPtr)
##############################################
ghc-8.10.2/libraries/unix/config.sub-52-
ghc-8.10.2/libraries/unix/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
ghc-8.10.2/libraries/unix/config.sub-54-
##############################################
ghc-8.10.2/libraries/unix/config.sub-114-# Here we must recognize all the valid KERNEL-OS combinations.
ghc-8.10.2/libraries/unix/config.sub:115:maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
ghc-8.10.2/libraries/unix/config.sub-116-case $maybe_os in
##############################################
ghc-8.10.2/libraries/unix/config.sub-122-    os=-$maybe_os
ghc-8.10.2/libraries/unix/config.sub:123:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
ghc-8.10.2/libraries/unix/config.sub-124-    ;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-126-    os=-linux-android
ghc-8.10.2/libraries/unix/config.sub:127:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
ghc-8.10.2/libraries/unix/config.sub-128-    ;;
ghc-8.10.2/libraries/unix/config.sub-129-  *)
ghc-8.10.2/libraries/unix/config.sub:130:    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
ghc-8.10.2/libraries/unix/config.sub-131-    if [ $basic_machine != $1 ]
ghc-8.10.2/libraries/unix/config.sub:132:    then os=`echo $1 | sed 's/.*-/-/'`
ghc-8.10.2/libraries/unix/config.sub-133-    else os=; fi
##############################################
ghc-8.10.2/libraries/unix/config.sub-180-		os=-sco5v6
ghc-8.10.2/libraries/unix/config.sub:181:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-182-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-184-		os=-sco3.2v5
ghc-8.10.2/libraries/unix/config.sub:185:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-186-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-188-		os=-sco3.2v4
ghc-8.10.2/libraries/unix/config.sub:189:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-190-		;;
ghc-8.10.2/libraries/unix/config.sub-191-	-sco3.2.[4-9]*)
ghc-8.10.2/libraries/unix/config.sub:192:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
ghc-8.10.2/libraries/unix/config.sub:193:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-194-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-196-		# Don't forget version if it is 3.2v4 or newer.
ghc-8.10.2/libraries/unix/config.sub:197:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-198-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-200-		# Don't forget version if it is 3.2v4 or newer.
ghc-8.10.2/libraries/unix/config.sub:201:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-202-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-204-		os=-sco3.2v2
ghc-8.10.2/libraries/unix/config.sub:205:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-206-		;;
ghc-8.10.2/libraries/unix/config.sub-207-	-udk*)
ghc-8.10.2/libraries/unix/config.sub:208:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-209-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-211-		os=-isc2.2
ghc-8.10.2/libraries/unix/config.sub:212:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-213-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-217-	-isc*)
ghc-8.10.2/libraries/unix/config.sub:218:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-219-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-229-	-ptx*)
ghc-8.10.2/libraries/unix/config.sub:230:		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
ghc-8.10.2/libraries/unix/config.sub-231-		;;
ghc-8.10.2/libraries/unix/config.sub-232-	-windowsnt*)
ghc-8.10.2/libraries/unix/config.sub:233:		os=`echo $os | sed -e 's/windowsnt/winnt/'`
ghc-8.10.2/libraries/unix/config.sub-234-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-368-	*-*-*)
ghc-8.10.2/libraries/unix/config.sub:369:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
ghc-8.10.2/libraries/unix/config.sub-370-		exit 1
##############################################
ghc-8.10.2/libraries/unix/config.sub-497-	amd64-*)
ghc-8.10.2/libraries/unix/config.sub:498:		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-499-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-542-	blackfin-*)
ghc-8.10.2/libraries/unix/config.sub:543:		basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-544-		os=-linux
##############################################
ghc-8.10.2/libraries/unix/config.sub-550-	c54x-*)
ghc-8.10.2/libraries/unix/config.sub:551:		basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-552-		;;
ghc-8.10.2/libraries/unix/config.sub-553-	c55x-*)
ghc-8.10.2/libraries/unix/config.sub:554:		basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-555-		;;
ghc-8.10.2/libraries/unix/config.sub-556-	c6x-*)
ghc-8.10.2/libraries/unix/config.sub:557:		basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-558-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-654-	e500v[12]-*)
ghc-8.10.2/libraries/unix/config.sub:655:		basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-656-		os=$os"spe"
##############################################
ghc-8.10.2/libraries/unix/config.sub-761-	i*86v32)
ghc-8.10.2/libraries/unix/config.sub:762:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-763-		os=-sysv32
##############################################
ghc-8.10.2/libraries/unix/config.sub-765-	i*86v4*)
ghc-8.10.2/libraries/unix/config.sub:766:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-767-		os=-sysv4
##############################################
ghc-8.10.2/libraries/unix/config.sub-769-	i*86v)
ghc-8.10.2/libraries/unix/config.sub:770:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-771-		os=-sysv
##############################################
ghc-8.10.2/libraries/unix/config.sub-773-	i*86sol2)
ghc-8.10.2/libraries/unix/config.sub:774:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
ghc-8.10.2/libraries/unix/config.sub-775-		os=-solaris2
##############################################
ghc-8.10.2/libraries/unix/config.sub-799-	leon-*|leon[3-9]-*)
ghc-8.10.2/libraries/unix/config.sub:800:		basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`
ghc-8.10.2/libraries/unix/config.sub-801-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-806-	m68knommu-*)
ghc-8.10.2/libraries/unix/config.sub:807:		basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-808-		os=-linux
##############################################
ghc-8.10.2/libraries/unix/config.sub-843-	mips3*-*)
ghc-8.10.2/libraries/unix/config.sub:844:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
ghc-8.10.2/libraries/unix/config.sub-845-		;;
ghc-8.10.2/libraries/unix/config.sub-846-	mips3*)
ghc-8.10.2/libraries/unix/config.sub:847:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
ghc-8.10.2/libraries/unix/config.sub-848-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-865-	ms1-*)
ghc-8.10.2/libraries/unix/config.sub:866:		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
ghc-8.10.2/libraries/unix/config.sub-867-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-987-	parisc-*)
ghc-8.10.2/libraries/unix/config.sub:988:		basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-989-		os=-linux
##############################################
ghc-8.10.2/libraries/unix/config.sub-1003-	pc98-*)
ghc-8.10.2/libraries/unix/config.sub:1004:		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1005-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1018-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
ghc-8.10.2/libraries/unix/config.sub:1019:		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1020-		;;
ghc-8.10.2/libraries/unix/config.sub-1021-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
ghc-8.10.2/libraries/unix/config.sub:1022:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1023-		;;
ghc-8.10.2/libraries/unix/config.sub-1024-	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
ghc-8.10.2/libraries/unix/config.sub:1025:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1026-		;;
ghc-8.10.2/libraries/unix/config.sub-1027-	pentium4-*)
ghc-8.10.2/libraries/unix/config.sub:1028:		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1029-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1037-	ppc-* | ppcbe-*)
ghc-8.10.2/libraries/unix/config.sub:1038:		basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1039-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1043-	ppcle-* | powerpclittle-*)
ghc-8.10.2/libraries/unix/config.sub:1044:		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1045-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1047-		;;
ghc-8.10.2/libraries/unix/config.sub:1048:	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1049-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1053-	ppc64le-* | powerpc64little-*)
ghc-8.10.2/libraries/unix/config.sub:1054:		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1055-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1136-	strongarm-* | thumb-*)
ghc-8.10.2/libraries/unix/config.sub:1137:		basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub-1138-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1269-	xscale-* | xscalee[bl]-*)
ghc-8.10.2/libraries/unix/config.sub:1270:		basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
ghc-8.10.2/libraries/unix/config.sub-1271-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1346-	*)
ghc-8.10.2/libraries/unix/config.sub:1347:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
ghc-8.10.2/libraries/unix/config.sub-1348-		exit 1
##############################################
ghc-8.10.2/libraries/unix/config.sub-1354-	*-digital*)
ghc-8.10.2/libraries/unix/config.sub:1355:		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
ghc-8.10.2/libraries/unix/config.sub-1356-		;;
ghc-8.10.2/libraries/unix/config.sub-1357-	*-commodore*)
ghc-8.10.2/libraries/unix/config.sub:1358:		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
ghc-8.10.2/libraries/unix/config.sub-1359-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1375-	-solaris1 | -solaris1.*)
ghc-8.10.2/libraries/unix/config.sub:1376:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
ghc-8.10.2/libraries/unix/config.sub-1377-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1387-	-gnu/linux*)
ghc-8.10.2/libraries/unix/config.sub:1388:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
ghc-8.10.2/libraries/unix/config.sub-1389-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1434-	-nto*)
ghc-8.10.2/libraries/unix/config.sub:1435:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
ghc-8.10.2/libraries/unix/config.sub-1436-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1441-	-mac*)
ghc-8.10.2/libraries/unix/config.sub:1442:		os=`echo $os | sed -e 's|mac|macos|'`
ghc-8.10.2/libraries/unix/config.sub-1443-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1447-	-linux*)
ghc-8.10.2/libraries/unix/config.sub:1448:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
ghc-8.10.2/libraries/unix/config.sub-1449-		;;
ghc-8.10.2/libraries/unix/config.sub-1450-	-sunos5*)
ghc-8.10.2/libraries/unix/config.sub:1451:		os=`echo $os | sed -e 's|sunos5|solaris2|'`
ghc-8.10.2/libraries/unix/config.sub-1452-		;;
ghc-8.10.2/libraries/unix/config.sub-1453-	-sunos6*)
ghc-8.10.2/libraries/unix/config.sub:1454:		os=`echo $os | sed -e 's|sunos6|solaris3|'`
ghc-8.10.2/libraries/unix/config.sub-1455-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1502-	-sinix5.*)
ghc-8.10.2/libraries/unix/config.sub:1503:		os=`echo $os | sed -e 's|sinix|sysv|'`
ghc-8.10.2/libraries/unix/config.sub-1504-		;;
##############################################
ghc-8.10.2/libraries/unix/config.sub-1557-		# Get rid of the `-' at the beginning of $os.
ghc-8.10.2/libraries/unix/config.sub:1558:		os=`echo $os | sed 's/[^-]*-//'`
ghc-8.10.2/libraries/unix/config.sub:1559:		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
ghc-8.10.2/libraries/unix/config.sub-1560-		exit 1
##############################################
ghc-8.10.2/libraries/unix/config.sub-1823-		esac
ghc-8.10.2/libraries/unix/config.sub:1824:		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
ghc-8.10.2/libraries/unix/config.sub-1825-		;;
##############################################
ghc-8.10.2/libraries/unix/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/unix/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/unix/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/unix/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/unix/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/unix/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/unix/configure-52-else
ghc-8.10.2/libraries/unix/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/unix/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/unix/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/unix/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/unix/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/unix/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/unix/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
ghc-8.10.2/libraries/unix/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
ghc-8.10.2/libraries/unix/configure-327-      case $as_dir in #(
ghc-8.10.2/libraries/unix/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/unix/configure-329-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/unix/configure-400-  {
ghc-8.10.2/libraries/unix/configure:401:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/unix/configure-402-  }
##############################################
ghc-8.10.2/libraries/unix/configure-407-# ----------------------------------------
ghc-8.10.2/libraries/unix/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/unix/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/unix/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/unix/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/unix/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/unix/configure-764-  case $ac_option in
ghc-8.10.2/libraries/unix/configure:765:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/unix/configure-766-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/unix/configure-808-  -disable-* | --disable-*)
ghc-8.10.2/libraries/unix/configure:809:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/unix/configure-810-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/unix/configure-813-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/unix/configure:814:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/unix/configure-815-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/unix/configure-834-  -enable-* | --enable-*)
ghc-8.10.2/libraries/unix/configure:835:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/unix/configure-836-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/unix/configure-839-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/unix/configure:840:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/unix/configure-841-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/unix/configure-1038-  -with-* | --with-*)
ghc-8.10.2/libraries/unix/configure:1039:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/unix/configure-1040-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/unix/configure-1043-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/unix/configure:1044:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/unix/configure-1045-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/unix/configure-1054-  -without-* | --without-*)
ghc-8.10.2/libraries/unix/configure:1055:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/unix/configure-1056-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/unix/configure-1059-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/unix/configure:1060:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/unix/configure-1061-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/unix/configure-1092-  *=*)
ghc-8.10.2/libraries/unix/configure:1093:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/unix/configure-1094-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/unix/configure-1113-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/unix/configure:1114:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/unix/configure-1115-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/unix/configure-1135-    */ )
ghc-8.10.2/libraries/unix/configure:1136:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/unix/configure-1137-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/unix/configure-1170-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/unix/configure:1171:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/unix/configure-1172-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/unix/configure-1226-case $srcdir in
ghc-8.10.2/libraries/unix/configure:1227:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/unix/configure-1228-esac
##############################################
ghc-8.10.2/libraries/unix/configure-1269-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/unix/configure:1270:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/unix/configure:1271:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/unix/configure-1272-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/unix/configure-1347-*)
ghc-8.10.2/libraries/unix/configure:1348:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/unix/configure-1349-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/unix/configure:1350:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/unix/configure-1351-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/unix/configure-1767-  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
ghc-8.10.2/libraries/unix/configure:1768:  as_decl_name=`echo $2|sed 's/ *(.*//'`
ghc-8.10.2/libraries/unix/configure:1769:  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
ghc-8.10.2/libraries/unix/configure-1770-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
##############################################
ghc-8.10.2/libraries/unix/configure-2121-    *\'*)
ghc-8.10.2/libraries/unix/configure:2122:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/unix/configure-2123-    esac
##############################################
ghc-8.10.2/libraries/unix/configure-2204-      case $ac_val in
ghc-8.10.2/libraries/unix/configure:2205:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/unix/configure-2206-      esac
##############################################
ghc-8.10.2/libraries/unix/configure-2219-	case $ac_val in
ghc-8.10.2/libraries/unix/configure:2220:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/unix/configure-2221-	esac
##############################################
ghc-8.10.2/libraries/unix/configure-2339-    set,)
ghc-8.10.2/libraries/unix/configure:2340:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/unix/configure:2341:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/unix/configure-2342-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/unix/configure-2350-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/unix/configure:2351:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/unix/configure:2352:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/unix/configure-2353-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/unix/configure-2370-    case $ac_new_val in
ghc-8.10.2/libraries/unix/configure:2371:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/unix/configure-2372-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/unix/configure-2747-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/libraries/unix/configure:2748:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/libraries/unix/configure-2749-
##############################################
ghc-8.10.2/libraries/unix/configure-2791-	then :; else
ghc-8.10.2/libraries/unix/configure:2792:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/unix/configure-2793-	fi
##############################################
ghc-8.10.2/libraries/unix/configure-2851-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/libraries/unix/configure:2852:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/unix/configure-2853-	  break;;
##############################################
ghc-8.10.2/libraries/unix/configure-2960-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/libraries/unix/configure:2961:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/libraries/unix/configure-2962-       break;;
##############################################
ghc-8.10.2/libraries/unix/configure-3349-  # Check for GNU $ac_path_GREP
ghc-8.10.2/libraries/unix/configure:3350:case `"$ac_path_GREP" --version 2>&1` in
ghc-8.10.2/libraries/unix/configure-3351-*GNU*)
##############################################
ghc-8.10.2/libraries/unix/configure-3415-  # Check for GNU $ac_path_EGREP
ghc-8.10.2/libraries/unix/configure:3416:case `"$ac_path_EGREP" --version 2>&1` in
ghc-8.10.2/libraries/unix/configure-3417-*GNU*)
##############################################
ghc-8.10.2/libraries/unix/configure-3576-do :
ghc-8.10.2/libraries/unix/configure:3577:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-3578-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
ghc-8.10.2/libraries/unix/configure-3581-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:3582:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-3583-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-3950-do :
ghc-8.10.2/libraries/unix/configure:3951:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-3952-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/unix/configure-3954-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:3955:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-3956-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-3963-do :
ghc-8.10.2/libraries/unix/configure:3964:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-3965-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/unix/configure-3967-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:3968:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-3969-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-3976-do :
ghc-8.10.2/libraries/unix/configure:3977:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-3978-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/unix/configure-3980-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:3981:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-3982-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-3989-do :
ghc-8.10.2/libraries/unix/configure:3990:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-3991-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/unix/configure-3993-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:3994:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-3995-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4002-do :
ghc-8.10.2/libraries/unix/configure:4003:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4004-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/unix/configure-4006-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4007:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4008-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4016-do :
ghc-8.10.2/libraries/unix/configure:4017:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4018-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4020-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4021:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4022-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4028-do :
ghc-8.10.2/libraries/unix/configure:4029:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4030-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4032-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4033:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4034-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4040-do :
ghc-8.10.2/libraries/unix/configure:4041:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4042-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4044-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4045:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4046-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4135-test "x$ac_build_alias" = x &&
ghc-8.10.2/libraries/unix/configure:4136:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
ghc-8.10.2/libraries/unix/configure-4137-test "x$ac_build_alias" = x &&
ghc-8.10.2/libraries/unix/configure-4138-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
ghc-8.10.2/libraries/unix/configure:4139:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
ghc-8.10.2/libraries/unix/configure-4140-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/unix/configure-4159-IFS=$ac_save_IFS
ghc-8.10.2/libraries/unix/configure:4160:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/unix/configure-4161-
##############################################
ghc-8.10.2/libraries/unix/configure-4170-else
ghc-8.10.2/libraries/unix/configure:4171:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
ghc-8.10.2/libraries/unix/configure-4172-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/unix/configure-4192-IFS=$ac_save_IFS
ghc-8.10.2/libraries/unix/configure:4193:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/unix/configure-4194-
##############################################
ghc-8.10.2/libraries/unix/configure-4203-else
ghc-8.10.2/libraries/unix/configure:4204:  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
ghc-8.10.2/libraries/unix/configure-4205-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/libraries/unix/configure-4225-IFS=$ac_save_IFS
ghc-8.10.2/libraries/unix/configure:4226:case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/libraries/unix/configure-4227-
##############################################
ghc-8.10.2/libraries/unix/configure-4240-do :
ghc-8.10.2/libraries/unix/configure:4241:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4242-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4244-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4245:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4246-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4452-do :
ghc-8.10.2/libraries/unix/configure:4453:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4454-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4456-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4457:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4458-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4464-do :
ghc-8.10.2/libraries/unix/configure:4465:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4466-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4468-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4469:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4470-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4494-do :
ghc-8.10.2/libraries/unix/configure:4495:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4496-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4498-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4499:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4500-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4551-do :
ghc-8.10.2/libraries/unix/configure:4552:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4553-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4555-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4556:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4557-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4664-do :
ghc-8.10.2/libraries/unix/configure:4665:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4666-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/libraries/unix/configure-4668-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4669:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/libraries/unix/configure-4670-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-4682-do
ghc-8.10.2/libraries/unix/configure:4683:as_fp_Cache=`$as_echo "fp_cv_const_$fp_const_name" | $as_tr_sh`
ghc-8.10.2/libraries/unix/configure-4684-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking value of $fp_const_name" >&5
##############################################
ghc-8.10.2/libraries/unix/configure-4705-cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/unix/configure:4706:#define `$as_echo "CONST_$fp_const_name" | $as_tr_cpp` `eval 'as_val=${'$as_fp_Cache'};$as_echo "$as_val"'`
ghc-8.10.2/libraries/unix/configure-4707-_ACEOF
##############################################
ghc-8.10.2/libraries/unix/configure-5231-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/unix/configure:5232:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/unix/configure-5233-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/unix/configure-5298-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/unix/configure:5299:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/unix/configure-5300-  as_echo='print -r --'
ghc-8.10.2/libraries/unix/configure-5301-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/unix/configure:5302:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/unix/configure-5303-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/unix/configure-5305-else
ghc-8.10.2/libraries/unix/configure:5306:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/unix/configure-5307-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/unix/configure-5315-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/unix/configure:5316:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/unix/configure-5317-      esac;
##############################################
ghc-8.10.2/libraries/unix/configure-5392-# ----------------------------------------
ghc-8.10.2/libraries/unix/configure:5393:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/unix/configure-5394-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/unix/configure-5464-  {
ghc-8.10.2/libraries/unix/configure:5465:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/unix/configure-5466-  }
##############################################
ghc-8.10.2/libraries/unix/configure-5568-      case $as_dir in #(
ghc-8.10.2/libraries/unix/configure:5569:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/unix/configure-5570-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/unix/configure-5699-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/unix/configure:5700:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/unix/configure-5701-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/unix/configure-5721-  --*=?*)
ghc-8.10.2/libraries/unix/configure:5722:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/unix/configure:5723:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/unix/configure-5724-    ac_shift=:
##############################################
ghc-8.10.2/libraries/unix/configure-5726-  --*=)
ghc-8.10.2/libraries/unix/configure:5727:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/unix/configure-5728-    ac_optarg=
##############################################
ghc-8.10.2/libraries/unix/configure-5750-    case $ac_optarg in
ghc-8.10.2/libraries/unix/configure:5751:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/unix/configure-5752-    '') as_fn_error $? "missing file argument" ;;
##############################################
ghc-8.10.2/libraries/unix/configure-5758-    case $ac_optarg in
ghc-8.10.2/libraries/unix/configure:5759:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/unix/configure-5760-    esac
##############################################
ghc-8.10.2/libraries/unix/configure-5879-fi
ghc-8.10.2/libraries/unix/configure:5880:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
ghc-8.10.2/libraries/unix/configure-5881-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
ghc-8.10.2/libraries/unix/configure-5896-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ghc-8.10.2/libraries/unix/configure:5897:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ghc-8.10.2/libraries/unix/configure-5898-ac_delim='%!_!# '
##############################################
ghc-8.10.2/libraries/unix/configure-5902-
ghc-8.10.2/libraries/unix/configure:5903:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
ghc-8.10.2/libraries/unix/configure-5904-  if test $ac_delim_n = $ac_delim_num; then
##############################################
ghc-8.10.2/libraries/unix/configure-6040-for ac_last_try in false false :; do
ghc-8.10.2/libraries/unix/configure:6041:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
ghc-8.10.2/libraries/unix/configure-6042-  if test -z "$ac_tt"; then
##############################################
ghc-8.10.2/libraries/unix/configure-6172-      esac
ghc-8.10.2/libraries/unix/configure:6173:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/unix/configure-6174-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/unix/configure-6231-*)
ghc-8.10.2/libraries/unix/configure:6232:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/unix/configure-6233-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/unix/configure:6234:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/unix/configure-6235-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/unix/configure-6283-/@mandir@/p'
ghc-8.10.2/libraries/unix/configure:6284:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
ghc-8.10.2/libraries/unix/configure-6285-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
ghc-8.10.2/libraries/unix/configure-6300-
ghc-8.10.2/libraries/unix/configure:6301:# Neutralize VPATH when `$srcdir' = `.'.
ghc-8.10.2/libraries/unix/configure-6302-# Shell code in configure.ac might set extrasub.
##############################################
ghc-8.10.2/libraries/unix/configure-6326-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
ghc-8.10.2/libraries/unix/configure:6327:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
ghc-8.10.2/libraries/unix/configure-6328-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
ghc-8.10.2/libraries/unix/install-sh-229-      fi
ghc-8.10.2/libraries/unix/install-sh:230:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
ghc-8.10.2/libraries/unix/install-sh-231-    *)
##############################################
ghc-8.10.2/libraries/unix/install-sh-276-      dstdir=$dst
ghc-8.10.2/libraries/unix/install-sh:277:      dst=$dstdir/`basename "$src"`
ghc-8.10.2/libraries/unix/install-sh-278-      dstdir_status=0
##############################################
ghc-8.10.2/libraries/unix/install-sh-358-		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
ghc-8.10.2/libraries/unix/install-sh:359:		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
ghc-8.10.2/libraries/unix/install-sh-360-		   case $ls_ld_tmpdir in
##############################################
ghc-8.10.2/libraries/unix/install-sh-365-		   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
ghc-8.10.2/libraries/unix/install-sh:366:		     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
ghc-8.10.2/libraries/unix/install-sh-367-		     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
ghc-8.10.2/libraries/unix/install-sh-425-	    case $prefix in
ghc-8.10.2/libraries/unix/install-sh:426:	      *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
ghc-8.10.2/libraries/unix/install-sh-427-	      *) qprefix=$prefix;;
##############################################
ghc-8.10.2/libraries/unix/install-sh-474-    if $copy_on_change &&
ghc-8.10.2/libraries/unix/install-sh:475:       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
ghc-8.10.2/libraries/unix/install-sh:476:       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
ghc-8.10.2/libraries/unix/install-sh-477-
##############################################
ghc-8.10.2/libraries/ghc-boot/GHC/Settings.hs-3---
ghc-8.10.2/libraries/ghc-boot/GHC/Settings.hs:4:-- GHC has a file, `${top_dir}/settings`, which is the main source of run-time
ghc-8.10.2/libraries/ghc-boot/GHC/Settings.hs-5--- configuration. ghc-pkg needs just a little bit of it: the target platform CPU
##############################################
ghc-8.10.2/libraries/ghc-boot/GHC/BaseDir.hs-11--- In the interest of making GHC builds more relocatable, many settings also
ghc-8.10.2/libraries/ghc-boot/GHC/BaseDir.hs:12:-- will expand `${top_dir}` inside strings so GHC doesn't need to know it's on
ghc-8.10.2/libraries/ghc-boot/GHC/BaseDir.hs-13--- installation location at build time. ghc-pkg also can expand those variables
##############################################
ghc-8.10.2/libraries/containers/containers-tests/src/Data/Map/Internal.hs-3068--- a big difference if someone uses `map (const x) m` instead
ghc-8.10.2/libraries/containers/containers-tests/src/Data/Map/Internal.hs:3069:-- of `x <$ m`; it doesn't seem to do any harm.
ghc-8.10.2/libraries/containers/containers-tests/src/Data/Map/Internal.hs-3070-
##############################################
ghc-8.10.2/libraries/containers/containers-tests/src/Data/IntSet/Internal.hs-1512-        go !_ 0 = z
ghc-8.10.2/libraries/containers/containers-tests/src/Data/IntSet/Internal.hs:1513:        go bi n | n `testBit` 0 = f bi $! go (bi + 1) (n `shiftRL` 1)
ghc-8.10.2/libraries/containers/containers-tests/src/Data/IntSet/Internal.hs-1514-                | otherwise     =         go (bi + 1) (n `shiftRL` 1)
##############################################
ghc-8.10.2/libraries/containers/containers-tests/src/Data/Graph.hs-519-instance Functor (SetM s) where
ghc-8.10.2/libraries/containers/containers-tests/src/Data/Graph.hs:520:    f `fmap` SetM v = SetM $ \s -> f `fmap` v s
ghc-8.10.2/libraries/containers/containers-tests/src/Data/Graph.hs-521-    {-# INLINE fmap #-}
##############################################
ghc-8.10.2/libraries/containers/containers/docs/sequence.rst-463-<https://wiki.haskell.org/Typeclassopedia#Functor>`_ instance for sequences and
ghc-8.10.2/libraries/containers/containers/docs/sequence.rst:464:can also be written infix using the ``<$>`` operator.
ghc-8.10.2/libraries/containers/containers/docs/sequence.rst-465-
##############################################
ghc-8.10.2/libraries/containers/containers/changelog.md-358-  * Speed up `adjust` for `Data.Map`. Allow `map` to inline, and
ghc-8.10.2/libraries/containers/containers/changelog.md:359:    define a custom `(<$)`. This considerably improves mapping with
ghc-8.10.2/libraries/containers/containers/changelog.md-360-    a constant function.
##############################################
ghc-8.10.2/libraries/containers/containers/src/Data/Map/Internal.hs-3068--- a big difference if someone uses `map (const x) m` instead
ghc-8.10.2/libraries/containers/containers/src/Data/Map/Internal.hs:3069:-- of `x <$ m`; it doesn't seem to do any harm.
ghc-8.10.2/libraries/containers/containers/src/Data/Map/Internal.hs-3070-
##############################################
ghc-8.10.2/libraries/containers/containers/src/Data/IntSet/Internal.hs-1512-        go !_ 0 = z
ghc-8.10.2/libraries/containers/containers/src/Data/IntSet/Internal.hs:1513:        go bi n | n `testBit` 0 = f bi $! go (bi + 1) (n `shiftRL` 1)
ghc-8.10.2/libraries/containers/containers/src/Data/IntSet/Internal.hs-1514-                | otherwise     =         go (bi + 1) (n `shiftRL` 1)
##############################################
ghc-8.10.2/libraries/containers/containers/src/Data/Graph.hs-519-instance Functor (SetM s) where
ghc-8.10.2/libraries/containers/containers/src/Data/Graph.hs:520:    f `fmap` SetM v = SetM $ \s -> f `fmap` v s
ghc-8.10.2/libraries/containers/containers/src/Data/Graph.hs-521-    {-# INLINE fmap #-}
##############################################
ghc-8.10.2/libraries/template-haskell/Language/Haskell/TH/Syntax.hs-571-                 LangObjcxx -> "mm"
ghc-8.10.2/libraries/template-haskell/Language/Haskell/TH/Syntax.hs:572:                 LangAsm    -> "s"
ghc-8.10.2/libraries/template-haskell/Language/Haskell/TH/Syntax.hs-573-                 RawObject  -> "a"
##############################################
ghc-8.10.2/libraries/directory/tools/testscript-26-                if [ "${LOCALAPPDATA-}" ]; then
ghc-8.10.2/libraries/directory/tools/testscript:27:                    dir=`cygpath -u "$LOCALAPPDATA"`/Programs/stack/x86_64-windows
ghc-8.10.2/libraries/directory/tools/testscript-28-                    mkdir -p "$dir"
##############################################
ghc-8.10.2/libraries/directory/tools/testscript-138-
ghc-8.10.2/libraries/directory/tools/testscript:139:        testflags=`printf " %s" "$testflags" | sed "s/ / --test-option=/g"`
ghc-8.10.2/libraries/directory/tools/testscript-140-        cabal "$v1"configure -v2 --enable-tests --ghc-options="$ghcflags"
##############################################
ghc-8.10.2/libraries/directory/tools/retry-4-    cat >&2 <<EOF && :
ghc-8.10.2/libraries/directory/tools/retry:5:usage: `basename "$0"` [-n <retries>] [cmd...]
ghc-8.10.2/libraries/directory/tools/retry-6-EOF
##############################################
ghc-8.10.2/libraries/directory/tools/retry-36-        cmd=$@
ghc-8.10.2/libraries/directory/tools/retry:37:        i=`expr $i + 1` || exit
ghc-8.10.2/libraries/directory/tools/retry-38-        if [ $i -le "$n" ]; then
##############################################
ghc-8.10.2/libraries/directory/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/directory/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/directory/configure-47-  as_echo='print -r --'
ghc-8.10.2/libraries/directory/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/directory/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/directory/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/directory/configure-52-else
ghc-8.10.2/libraries/directory/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/directory/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/directory/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/directory/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/directory/configure-64-      esac;
##############################################
ghc-8.10.2/libraries/directory/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/libraries/directory/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
ghc-8.10.2/libraries/directory/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
ghc-8.10.2/libraries/directory/configure-327-      case $as_dir in #(
ghc-8.10.2/libraries/directory/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/directory/configure-329-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/directory/configure-400-  {
ghc-8.10.2/libraries/directory/configure:401:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/directory/configure-402-  }
##############################################
ghc-8.10.2/libraries/directory/configure-407-# ----------------------------------------
ghc-8.10.2/libraries/directory/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/directory/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/directory/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/libraries/directory/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/libraries/directory/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/libraries/directory/configure-751-  case $ac_option in
ghc-8.10.2/libraries/directory/configure:752:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/libraries/directory/configure-753-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/libraries/directory/configure-795-  -disable-* | --disable-*)
ghc-8.10.2/libraries/directory/configure:796:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/libraries/directory/configure-797-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/directory/configure-800-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/directory/configure:801:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/directory/configure-802-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/directory/configure-821-  -enable-* | --enable-*)
ghc-8.10.2/libraries/directory/configure:822:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/libraries/directory/configure-823-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/directory/configure-826-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/directory/configure:827:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/directory/configure-828-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/directory/configure-1025-  -with-* | --with-*)
ghc-8.10.2/libraries/directory/configure:1026:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/libraries/directory/configure-1027-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/directory/configure-1030-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/directory/configure:1031:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/directory/configure-1032-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/directory/configure-1041-  -without-* | --without-*)
ghc-8.10.2/libraries/directory/configure:1042:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/libraries/directory/configure-1043-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/directory/configure-1046-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/libraries/directory/configure:1047:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/libraries/directory/configure-1048-    case $ac_user_opts in
##############################################
ghc-8.10.2/libraries/directory/configure-1079-  *=*)
ghc-8.10.2/libraries/directory/configure:1080:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/libraries/directory/configure-1081-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/libraries/directory/configure-1100-if test -n "$ac_prev"; then
ghc-8.10.2/libraries/directory/configure:1101:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/libraries/directory/configure-1102-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/libraries/directory/configure-1122-    */ )
ghc-8.10.2/libraries/directory/configure:1123:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/libraries/directory/configure-1124-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/libraries/directory/configure-1157-ac_ls_di=`ls -di .` &&
ghc-8.10.2/libraries/directory/configure:1158:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/libraries/directory/configure-1159-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/libraries/directory/configure-1213-case $srcdir in
ghc-8.10.2/libraries/directory/configure:1214:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/libraries/directory/configure-1215-esac
##############################################
ghc-8.10.2/libraries/directory/configure-1256-By default, \`make install' will install all the files in
ghc-8.10.2/libraries/directory/configure:1257:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/libraries/directory/configure:1258:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/libraries/directory/configure-1259-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/libraries/directory/configure-1329-*)
ghc-8.10.2/libraries/directory/configure:1330:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/directory/configure-1331-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/directory/configure:1332:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/directory/configure-1333-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/directory/configure-1817-    *\'*)
ghc-8.10.2/libraries/directory/configure:1818:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/directory/configure-1819-    esac
##############################################
ghc-8.10.2/libraries/directory/configure-1900-      case $ac_val in
ghc-8.10.2/libraries/directory/configure:1901:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/directory/configure-1902-      esac
##############################################
ghc-8.10.2/libraries/directory/configure-1915-	case $ac_val in
ghc-8.10.2/libraries/directory/configure:1916:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/libraries/directory/configure-1917-	esac
##############################################
ghc-8.10.2/libraries/directory/configure-2035-    set,)
ghc-8.10.2/libraries/directory/configure:2036:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/libraries/directory/configure:2037:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/libraries/directory/configure-2038-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/libraries/directory/configure-2046-	# differences in whitespace do not lead to failure.
ghc-8.10.2/libraries/directory/configure:2047:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/libraries/directory/configure:2048:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/libraries/directory/configure-2049-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/libraries/directory/configure-2066-    case $ac_new_val in
ghc-8.10.2/libraries/directory/configure:2067:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/directory/configure-2068-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/libraries/directory/configure-2473-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/libraries/directory/configure:2474:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/libraries/directory/configure-2475-
##############################################
ghc-8.10.2/libraries/directory/configure-2517-	then :; else
ghc-8.10.2/libraries/directory/configure:2518:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/directory/configure-2519-	fi
##############################################
ghc-8.10.2/libraries/directory/configure-2577-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/libraries/directory/configure:2578:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/libraries/directory/configure-2579-	  break;;
##############################################
ghc-8.10.2/libraries/directory/configure-2686-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/libraries/directory/configure:2687:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/libraries/directory/configure-2688-       break;;
##############################################
ghc-8.10.2/libraries/directory/configure-3076-  # Check for GNU $ac_path_GREP
ghc-8.10.2/libraries/directory/configure:3077:case `"$ac_path_GREP" --version 2>&1` in
ghc-8.10.2/libraries/directory/configure-3078-*GNU*)
##############################################
ghc-8.10.2/libraries/directory/configure-3142-  # Check for GNU $ac_path_EGREP
ghc-8.10.2/libraries/directory/configure:3143:case `"$ac_path_EGREP" --version 2>&1` in
ghc-8.10.2/libraries/directory/configure-3144-*GNU*)
##############################################
ghc-8.10.2/libraries/directory/configure-3303-do :
ghc-8.10.2/libraries/directory/configure:3304:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/directory/configure-3305-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
ghc-8.10.2/libraries/directory/configure-3308-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/directory/configure:3309:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/directory/configure-3310-_ACEOF
##############################################
ghc-8.10.2/libraries/directory/configure-3318-do :
ghc-8.10.2/libraries/directory/configure:3319:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/libraries/directory/configure-3320-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/libraries/directory/configure-3322-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/libraries/directory/configure:3323:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/libraries/directory/configure-3324-_ACEOF
##############################################
ghc-8.10.2/libraries/directory/configure-3470-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/libraries/directory/configure:3471:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/libraries/directory/configure-3472-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/libraries/directory/configure-3537-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/libraries/directory/configure:3538:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/directory/configure-3539-  as_echo='print -r --'
ghc-8.10.2/libraries/directory/configure-3540-  as_echo_n='print -rn --'
ghc-8.10.2/libraries/directory/configure:3541:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/libraries/directory/configure-3542-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/libraries/directory/configure-3544-else
ghc-8.10.2/libraries/directory/configure:3545:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/libraries/directory/configure-3546-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/libraries/directory/configure-3554-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/libraries/directory/configure:3555:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/libraries/directory/configure-3556-      esac;
##############################################
ghc-8.10.2/libraries/directory/configure-3631-# ----------------------------------------
ghc-8.10.2/libraries/directory/configure:3632:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/libraries/directory/configure-3633-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/libraries/directory/configure-3703-  {
ghc-8.10.2/libraries/directory/configure:3704:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/libraries/directory/configure-3705-  }
##############################################
ghc-8.10.2/libraries/directory/configure-3807-      case $as_dir in #(
ghc-8.10.2/libraries/directory/configure:3808:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/libraries/directory/configure-3809-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/libraries/directory/configure-3929-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/libraries/directory/configure:3930:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/libraries/directory/configure-3931-ac_cs_version="\\
##############################################
ghc-8.10.2/libraries/directory/configure-3951-  --*=?*)
ghc-8.10.2/libraries/directory/configure:3952:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/directory/configure:3953:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/libraries/directory/configure-3954-    ac_shift=:
##############################################
ghc-8.10.2/libraries/directory/configure-3956-  --*=)
ghc-8.10.2/libraries/directory/configure:3957:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/libraries/directory/configure-3958-    ac_optarg=
##############################################
ghc-8.10.2/libraries/directory/configure-3980-    case $ac_optarg in
ghc-8.10.2/libraries/directory/configure:3981:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/libraries/directory/configure-3982-    esac
##############################################
ghc-8.10.2/libraries/directory/configure-4102-for ac_last_try in false false :; do
ghc-8.10.2/libraries/directory/configure:4103:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
ghc-8.10.2/libraries/directory/configure-4104-  if test -z "$ac_tt"; then
##############################################
ghc-8.10.2/libraries/directory/configure-4234-      esac
ghc-8.10.2/libraries/directory/configure:4235:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/libraries/directory/configure-4236-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/libraries/directory/configure-4293-*)
ghc-8.10.2/libraries/directory/configure:4294:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/libraries/directory/configure-4295-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/libraries/directory/configure:4296:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/libraries/directory/configure-4297-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/libraries/bytestring/bench/BenchAll.hs-203-  (S.replicate n (w 0),
ghc-8.10.2/libraries/bytestring/bench/BenchAll.hs:204:   S.concat . replicate (h `div` n) $ S.replicate (n - 1) (w 0) `S.snoc` w 1)
ghc-8.10.2/libraries/bytestring/bench/BenchAll.hs-205-
##############################################
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs-270-    let ptr = unsafeForeignPtrToPtr fptr
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs:271:    stToIO (copyByteArrayToAddr (asBA sbs) 0 ptr len)
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs-272-    touchForeignPtr fptr
##############################################
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs-437-    stToIO $
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs:438:      copyByteArrayToAddr (asBA src) off dst len
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs-439-
##############################################
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs-495-copyByteArrayToAddr :: BA -> Int -> Ptr a -> Int -> ST RealWorld ()
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs:496:copyByteArrayToAddr (BA# src#) (I# src_off#) (Ptr dst#) (I# len#) =
ghc-8.10.2/libraries/bytestring/Data/ByteString/Short/Internal.hs-497-    ST $ \s -> case copyByteArrayToAddr# src# src_off# dst# len# s of
##############################################
ghc-8.10.2/libraries/bytestring/tests/Makefile-79-	rm -f p.tix
ghc-8.10.2/libraries/bytestring/tests/Makefile:80:	${GHC} ${GHCFLAGS} ../dist/build/cbits/fpstring.o -ddump-simpl-stats -fhpc --make -i.. Properties.hs -o p -O -fno-ignore-asserts -fasm -frewrite-rules
ghc-8.10.2/libraries/bytestring/tests/Makefile-81-	rm Rules.o Rules.hi
ghc-8.10.2/libraries/bytestring/tests/Makefile:82:	${GHC} ${GHCFLAGS} -hide-package bytestring ../dist/build/cbits/fpstring.o -ddump-simpl-stats -i.. Rules.hs -O -fno-ignore-asserts -fasm -frewrite-rules ../Data/ByteString/*.o ../Data/ByteString/*/*.o ../Data/ByteString.o -package QuickCheck QuickCheckUtils.o -c -no-recomp
ghc-8.10.2/libraries/bytestring/tests/Makefile-83-	${GHC} ${GHCFLAGS} -package QuickCheck ../dist/build/cbits/fpstring.o Properties.o Rules.o QuickCheckUtils.o ../Data/ByteString/*.o ../Data/ByteString/*/*.o ../Data/ByteString.o -o p
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-14-    ,("P.pathSeparators == ['/']", property $ P.pathSeparators == ['/'])
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:15:    ,("P.pathSeparator `elem` P.pathSeparators", property $ P.pathSeparator `elem` P.pathSeparators)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:16:    ,("W.pathSeparator `elem` W.pathSeparators", property $ W.pathSeparator `elem` W.pathSeparators)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:17:    ,("P.isPathSeparator a == (a `elem` P.pathSeparators)", property $ \a -> P.isPathSeparator a == (a `elem` P.pathSeparators))
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:18:    ,("W.isPathSeparator a == (a `elem` W.pathSeparators)", property $ \a -> W.isPathSeparator a == (a `elem` W.pathSeparators))
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-19-    ,("W.searchPathSeparator == ';'", property $ W.searchPathSeparator == ';')
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-110-    ,("null (W.takeExtension x) == not (W.hasExtension x)", property $ \(QFilePath x) -> null (W.takeExtension x) == not (W.hasExtension x))
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:111:    ,("\"png\" `P.isExtensionOf` \"/directory/file.png\" == True", property $ "png" `P.isExtensionOf` "/directory/file.png" == True)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:112:    ,("\"png\" `W.isExtensionOf` \"/directory/file.png\" == True", property $ "png" `W.isExtensionOf` "/directory/file.png" == True)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:113:    ,("\".png\" `P.isExtensionOf` \"/directory/file.png\" == True", property $ ".png" `P.isExtensionOf` "/directory/file.png" == True)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:114:    ,("\".png\" `W.isExtensionOf` \"/directory/file.png\" == True", property $ ".png" `W.isExtensionOf` "/directory/file.png" == True)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:115:    ,("\".tar.gz\" `P.isExtensionOf` \"bar/foo.tar.gz\" == True", property $ ".tar.gz" `P.isExtensionOf` "bar/foo.tar.gz" == True)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:116:    ,("\".tar.gz\" `W.isExtensionOf` \"bar/foo.tar.gz\" == True", property $ ".tar.gz" `W.isExtensionOf` "bar/foo.tar.gz" == True)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:117:    ,("\"ar.gz\" `P.isExtensionOf` \"bar/foo.tar.gz\" == False", property $ "ar.gz" `P.isExtensionOf` "bar/foo.tar.gz" == False)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:118:    ,("\"ar.gz\" `W.isExtensionOf` \"bar/foo.tar.gz\" == False", property $ "ar.gz" `W.isExtensionOf` "bar/foo.tar.gz" == False)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:119:    ,("\"png\" `P.isExtensionOf` \"/directory/file.png.jpg\" == False", property $ "png" `P.isExtensionOf` "/directory/file.png.jpg" == False)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:120:    ,("\"png\" `W.isExtensionOf` \"/directory/file.png.jpg\" == False", property $ "png" `W.isExtensionOf` "/directory/file.png.jpg" == False)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:121:    ,("\"csv/table.csv\" `P.isExtensionOf` \"/data/csv/table.csv\" == False", property $ "csv/table.csv" `P.isExtensionOf` "/data/csv/table.csv" == False)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:122:    ,("\"csv/table.csv\" `W.isExtensionOf` \"/data/csv/table.csv\" == False", property $ "csv/table.csv" `W.isExtensionOf` "/data/csv/table.csv" == False)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-123-    ,("P.stripExtension \"hs.o\" \"foo.x.hs.o\" == Just \"foo.x\"", property $ P.stripExtension "hs.o" "foo.x.hs.o" == Just "foo.x")
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-232-    ,("W.takeFileName \"test/\" == \"\"", property $ W.takeFileName "test/" == "")
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:233:    ,("P.takeFileName x `isSuffixOf` x", property $ \(QFilePath x) -> P.takeFileName x `isSuffixOf` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:234:    ,("W.takeFileName x `isSuffixOf` x", property $ \(QFilePath x) -> W.takeFileName x `isSuffixOf` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-235-    ,("P.takeFileName x == snd (P.splitFileName x)", property $ \(QFilePath x) -> P.takeFileName x == snd (P.splitFileName x))
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-283-    ,("W.takeDirectory \"/directory/other.ext\" == \"/directory\"", property $ W.takeDirectory "/directory/other.ext" == "/directory")
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:284:    ,("P.takeDirectory x `isPrefixOf` x || P.takeDirectory x == \".\"", property $ \(QFilePath x) -> P.takeDirectory x `isPrefixOf` x || P.takeDirectory x == ".")
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:285:    ,("W.takeDirectory x `isPrefixOf` x || W.takeDirectory x == \".\"", property $ \(QFilePath x) -> W.takeDirectory x `isPrefixOf` x || W.takeDirectory x == ".")
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-286-    ,("P.takeDirectory \"foo\" == \".\"", property $ P.takeDirectory "foo" == ".")
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-302-    ,("W.replaceDirectory \"root/file.ext\" \"/directory/\" == \"/directory/file.ext\"", property $ W.replaceDirectory "root/file.ext" "/directory/" == "/directory/file.ext")
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:303:    ,("P.replaceDirectory x (P.takeDirectory x) `P.equalFilePath` x", property $ \(QFilePathValidP x) -> P.replaceDirectory x (P.takeDirectory x) `P.equalFilePath` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:304:    ,("W.replaceDirectory x (W.takeDirectory x) `W.equalFilePath` x", property $ \(QFilePathValidW x) -> W.replaceDirectory x (W.takeDirectory x) `W.equalFilePath` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-305-    ,("\"/directory\" P.</> \"file.ext\" == \"/directory/file.ext\"", property $ "/directory" P.</> "file.ext" == "/directory/file.ext")
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-308-    ,("\"directory\" W.</> \"/file.ext\" == \"/file.ext\"", property $ "directory" W.</> "/file.ext" == "/file.ext")
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:309:    ,("(P.takeDirectory x P.</> P.takeFileName x) `P.equalFilePath` x", property $ \(QFilePathValidP x) -> (P.takeDirectory x P.</> P.takeFileName x) `P.equalFilePath` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:310:    ,("(W.takeDirectory x W.</> W.takeFileName x) `W.equalFilePath` x", property $ \(QFilePathValidW x) -> (W.takeDirectory x W.</> W.takeFileName x) `W.equalFilePath` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-311-    ,("\"/\" P.</> \"test\" == \"/test\"", property $ "/" P.</> "test" == "/test")
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-341-    ,("W.splitDirectories \"C:\\\\test\\\\file\" == [\"C:\\\\\", \"test\", \"file\"]", property $ W.splitDirectories "C:\\test\\file" == ["C:\\", "test", "file"])
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:342:    ,("P.joinPath (P.splitDirectories x) `P.equalFilePath` x", property $ \(QFilePathValidP x) -> P.joinPath (P.splitDirectories x) `P.equalFilePath` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:343:    ,("W.joinPath (W.splitDirectories x) `W.equalFilePath` x", property $ \(QFilePathValidW x) -> W.joinPath (W.splitDirectories x) `W.equalFilePath` x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-344-    ,("P.splitDirectories \"\" == []", property $ P.splitDirectories "" == [])
##############################################
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-368-    ,("W.makeRelative \"/directory\" \"/directory/file.ext\" == \"file.ext\"", property $ W.makeRelative "/directory" "/directory/file.ext" == "file.ext")
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:369:    ,("P.makeRelative (P.takeDirectory x) x `P.equalFilePath` P.takeFileName x", property $ \(QFilePathValidP x) -> P.makeRelative (P.takeDirectory x) x `P.equalFilePath` P.takeFileName x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs:370:    ,("W.makeRelative (W.takeDirectory x) x `W.equalFilePath` W.takeFileName x", property $ \(QFilePathValidW x) -> W.makeRelative (W.takeDirectory x) x `W.equalFilePath` W.takeFileName x)
ghc-8.10.2/libraries/filepath/tests/TestGen.hs-371-    ,("P.makeRelative x x == \".\"", property $ \(QFilePath x) -> P.makeRelative x x == ".")
##############################################
ghc-8.10.2/configure.ac-137-  AC_SUBST(GhcPatchLevel)dnl
ghc-8.10.2/configure.ac:138:  GhcMinVersion2=`echo "$GhcMinVersion" | sed 's/^\\(.\\)$/0\\1/'`
ghc-8.10.2/configure.ac-139-  GhcCanonVersion="$GhcMajVersion$GhcMinVersion2"
##############################################
ghc-8.10.2/configure.ac-174-
ghc-8.10.2/configure.ac:175:if test `expr $GhcMinVersion % 2` = "1"
ghc-8.10.2/configure.ac-176-then
##############################################
ghc-8.10.2/configure.ac-189-then
ghc-8.10.2/configure.ac:190:    ghc_host_os=`"${WithGhc}" +RTS --info | grep 'Host OS' | sed -e 's/.*, "//' -e 's/")//'`
ghc-8.10.2/configure.ac-191-
##############################################
ghc-8.10.2/configure.ac-195-        then
ghc-8.10.2/configure.ac:196:            WithGhc=`echo "${WithGhc}" | sed "s#^/\([a-zA-Z]\)/#\1:/#"`
ghc-8.10.2/configure.ac-197-        else
ghc-8.10.2/configure.ac-198-            # Canonicalise to <drive>:/path/to/ghc
ghc-8.10.2/configure.ac:199:            WithGhc=`cygpath -m "${WithGhc}"`
ghc-8.10.2/configure.ac-200-        fi
##############################################
ghc-8.10.2/configure.ac-216-then
ghc-8.10.2/configure.ac:217:        bootstrap_host=`"${WithGhc}" +RTS --info | grep '^ ,("Host platform"' | sed -e 's/.*, "//' -e 's/")//' | tr -d '\r'`
ghc-8.10.2/configure.ac:218:        bootstrap_target=`"${WithGhc}" +RTS --info | grep '^ ,("Target platform"' | sed -e 's/.*, "//' -e 's/")//' | tr -d '\r'`
ghc-8.10.2/configure.ac-219-        if test "$bootstrap_host" != "$bootstrap_target"
##############################################
ghc-8.10.2/configure.ac-847-    # Canonicalise to <drive>:/path/to/gcc
ghc-8.10.2/configure.ac:848:    HSCOLOUR=`cygpath -m ${HSCOLOUR}`
ghc-8.10.2/configure.ac-849-fi
##############################################
ghc-8.10.2/configure.ac-855-[if test -n "$SPHINXBUILD"; then
ghc-8.10.2/configure.ac:856:  fp_cv_sphinx_version=`"$SPHINXBUILD" --version 2>&1 | sed 's/.* \([0-9]\.[0-9]\.[0-9]\)/\1/' | head -n1`;
ghc-8.10.2/configure.ac-857-fi;
##############################################
ghc-8.10.2/configure.ac-1417-checkMake380() {
ghc-8.10.2/configure.ac:1418:    make_ver=`$1 --version 2>&1 | head -1`
ghc-8.10.2/configure.ac-1419-    if echo "$make_ver" | grep 'GNU Make 3\.80' > /dev/null
##############################################
ghc-8.10.2/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/configure-47-  as_echo='print -r --'
ghc-8.10.2/configure-48-  as_echo_n='print -rn --'
ghc-8.10.2/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/configure-50-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/configure-52-else
ghc-8.10.2/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/configure-64-      esac;
##############################################
ghc-8.10.2/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
ghc-8.10.2/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
ghc-8.10.2/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
ghc-8.10.2/configure-327-      case $as_dir in #(
ghc-8.10.2/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/configure-329-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/configure-400-  {
ghc-8.10.2/configure:401:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/configure-402-  }
##############################################
ghc-8.10.2/configure-407-# ----------------------------------------
ghc-8.10.2/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
ghc-8.10.2/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
ghc-8.10.2/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
ghc-8.10.2/configure-1020-  case $ac_option in
ghc-8.10.2/configure:1021:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
ghc-8.10.2/configure-1022-  *=)   ac_optarg= ;;
##############################################
ghc-8.10.2/configure-1064-  -disable-* | --disable-*)
ghc-8.10.2/configure:1065:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
ghc-8.10.2/configure-1066-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/configure-1069-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/configure:1070:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/configure-1071-    case $ac_user_opts in
##############################################
ghc-8.10.2/configure-1090-  -enable-* | --enable-*)
ghc-8.10.2/configure:1091:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
ghc-8.10.2/configure-1092-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/configure-1095-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/configure:1096:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/configure-1097-    case $ac_user_opts in
##############################################
ghc-8.10.2/configure-1294-  -with-* | --with-*)
ghc-8.10.2/configure:1295:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
ghc-8.10.2/configure-1296-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/configure-1299-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/configure:1300:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/configure-1301-    case $ac_user_opts in
##############################################
ghc-8.10.2/configure-1310-  -without-* | --without-*)
ghc-8.10.2/configure:1311:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
ghc-8.10.2/configure-1312-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/configure-1315-    ac_useropt_orig=$ac_useropt
ghc-8.10.2/configure:1316:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
ghc-8.10.2/configure-1317-    case $ac_user_opts in
##############################################
ghc-8.10.2/configure-1348-  *=*)
ghc-8.10.2/configure:1349:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
ghc-8.10.2/configure-1350-    # Reject names that are not valid shell variable names.
##############################################
ghc-8.10.2/configure-1369-if test -n "$ac_prev"; then
ghc-8.10.2/configure:1370:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
ghc-8.10.2/configure-1371-  as_fn_error $? "missing argument to $ac_option"
##############################################
ghc-8.10.2/configure-1391-    */ )
ghc-8.10.2/configure:1392:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
ghc-8.10.2/configure-1393-      eval $ac_var=\$ac_val;;
##############################################
ghc-8.10.2/configure-1426-ac_ls_di=`ls -di .` &&
ghc-8.10.2/configure:1427:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
ghc-8.10.2/configure-1428-  as_fn_error $? "working directory cannot be determined"
##############################################
ghc-8.10.2/configure-1482-case $srcdir in
ghc-8.10.2/configure:1483:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
ghc-8.10.2/configure-1484-esac
##############################################
ghc-8.10.2/configure-1525-By default, \`make install' will install all the files in
ghc-8.10.2/configure:1526:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
ghc-8.10.2/configure:1527:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
ghc-8.10.2/configure-1528-for instance \`--prefix=\$HOME'.
##############################################
ghc-8.10.2/configure-1689-*)
ghc-8.10.2/configure:1690:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/configure-1691-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/configure:1692:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/configure-1693-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/configure-2346-  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
ghc-8.10.2/configure:2347:  as_decl_name=`echo $2|sed 's/ *(.*//'`
ghc-8.10.2/configure:2348:  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
ghc-8.10.2/configure-2349-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
##############################################
ghc-8.10.2/configure-2460-    *\'*)
ghc-8.10.2/configure:2461:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/configure-2462-    esac
##############################################
ghc-8.10.2/configure-2543-      case $ac_val in
ghc-8.10.2/configure:2544:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/configure-2545-      esac
##############################################
ghc-8.10.2/configure-2558-	case $ac_val in
ghc-8.10.2/configure:2559:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
ghc-8.10.2/configure-2560-	esac
##############################################
ghc-8.10.2/configure-2678-    set,)
ghc-8.10.2/configure:2679:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
ghc-8.10.2/configure:2680:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ghc-8.10.2/configure-2681-      ac_cache_corrupted=: ;;
##############################################
ghc-8.10.2/configure-2689-	# differences in whitespace do not lead to failure.
ghc-8.10.2/configure:2690:	ac_old_val_w=`echo x $ac_old_val`
ghc-8.10.2/configure:2691:	ac_new_val_w=`echo x $ac_new_val`
ghc-8.10.2/configure-2692-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
ghc-8.10.2/configure-2709-    case $ac_new_val in
ghc-8.10.2/configure:2710:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/configure-2711-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
ghc-8.10.2/configure-2985-                ver_posixtime=`git log -1 --pretty=format:%ct`
ghc-8.10.2/configure:2986:        ver_date=`perl -MPOSIX -e "print strftime('%Y%m%d', gmtime($ver_posixtime));"`
ghc-8.10.2/configure-2987-        if echo $ver_date | grep '^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$' 2>&1 >/dev/null; then true; else
##############################################
ghc-8.10.2/configure-3033-# Split PACKAGE_VERSION into (possibly empty) parts
ghc-8.10.2/configure:3034:VERSION_MAJOR=`echo $PACKAGE_VERSION | sed 's/^\([^.]*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/configure:3035:VERSION_TMP=`echo $PACKAGE_VERSION | sed 's/^\([^.]*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/configure:3036:VERSION_MINOR=`echo $VERSION_TMP | sed 's/^\([^.]*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/configure:3037:ProjectPatchLevel=`echo $VERSION_TMP | sed 's/^\([^.]*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/configure-3038-
##############################################
ghc-8.10.2/configure-3050-# Save split version of ProjectPatchLevel
ghc-8.10.2/configure:3051:ProjectPatchLevel1=`echo $ProjectPatchLevel | sed 's/^\([^.]*\)\(\.\{0,1\}\(.*\)\)$/\1/'`
ghc-8.10.2/configure:3052:ProjectPatchLevel2=`echo $ProjectPatchLevel | sed 's/^\([^.]*\)\(\.\{0,1\}\(.*\)\)$/\3/'`
ghc-8.10.2/configure-3053-
##############################################
ghc-8.10.2/configure-3057-# Remove dots from the patch level; this allows us to have versions like 6.4.1.20050508
ghc-8.10.2/configure:3058:ProjectPatchLevel=`echo $ProjectPatchLevel | sed 's/\.//'`
ghc-8.10.2/configure-3059-
##############################################
ghc-8.10.2/configure-3198-  fi
ghc-8.10.2/configure:3199:fptools_version_of_ghc_major=`echo $fptools_version_of_ghc | sed -e 's/^\([0-9]\).*/\1/'`
ghc-8.10.2/configure:3200:fptools_version_of_ghc_minor=`echo $fptools_version_of_ghc | sed -e 's/^[0-9]\.\([0-9]*\).*/\1/'`
ghc-8.10.2/configure:3201:fptools_version_of_ghc_pl=`echo $fptools_version_of_ghc | sed -n -e 's/^[0-9]\.[0-9]*\.\([0-9]*\)/\1/p'`
ghc-8.10.2/configure-3202-#
##############################################
ghc-8.10.2/configure-3224-
ghc-8.10.2/configure:3225:          GhcMinVersion2=`echo "$GhcMinVersion" | sed 's/^\\(.\\)$/0\\1/'`
ghc-8.10.2/configure-3226-  GhcCanonVersion="$GhcMajVersion$GhcMinVersion2"
##############################################
ghc-8.10.2/configure-3229-
ghc-8.10.2/configure:3230:CC_STAGE0=`"$WithGhc" --info | grep "^ ,(\"C compiler command\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/configure-3231-tmp=${CC_STAGE0#\$topdir/}
##############################################
ghc-8.10.2/configure-3233-then
ghc-8.10.2/configure:3234:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/configure-3235-    CC_STAGE0="$topdir/$tmp"
##############################################
ghc-8.10.2/configure-3241-
ghc-8.10.2/configure:3242:LD_STAGE0=`"$WithGhc" --info | grep "^ ,(\"ld command\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/configure-3243-tmp=${LD_STAGE0#\$topdir/}
##############################################
ghc-8.10.2/configure-3245-then
ghc-8.10.2/configure:3246:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/configure-3247-    LD_STAGE0="$topdir/$tmp"
##############################################
ghc-8.10.2/configure-3251-
ghc-8.10.2/configure:3252:AR_STAGE0=`"$WithGhc" --info | grep "^ ,(\"ar command\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/configure-3253-tmp=${AR_STAGE0#\$topdir/}
##############################################
ghc-8.10.2/configure-3255-then
ghc-8.10.2/configure:3256:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/configure-3257-    AR_STAGE0="$topdir/$tmp"
##############################################
ghc-8.10.2/configure-3261-
ghc-8.10.2/configure:3262:AR_OPTS_STAGE0=`"$WithGhc" --info | grep "^ ,(\"ar flags\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/configure-3263-tmp=${AR_OPTS_STAGE0#\$topdir/}
##############################################
ghc-8.10.2/configure-3265-then
ghc-8.10.2/configure:3266:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/configure-3267-    AR_OPTS_STAGE0="$topdir/$tmp"
##############################################
ghc-8.10.2/configure-3271-
ghc-8.10.2/configure:3272:ArSupportsAtFile_STAGE0=`"$WithGhc" --info | grep "^ ,(\"ar supports at file\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/configure-3273-tmp=${ArSupportsAtFile_STAGE0#\$topdir/}
##############################################
ghc-8.10.2/configure-3275-then
ghc-8.10.2/configure:3276:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/configure-3277-    ArSupportsAtFile_STAGE0="$topdir/$tmp"
##############################################
ghc-8.10.2/configure-3281-
ghc-8.10.2/configure:3282:SUPPORT_SMP_STAGE0=`"$WithGhc" --info | grep "^ ,(\"Support SMP\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/configure-3283-tmp=${SUPPORT_SMP_STAGE0#\$topdir/}
##############################################
ghc-8.10.2/configure-3285-then
ghc-8.10.2/configure:3286:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/configure-3287-    SUPPORT_SMP_STAGE0="$topdir/$tmp"
##############################################
ghc-8.10.2/configure-3291-
ghc-8.10.2/configure:3292:RTS_WAYS_STAGE0=`"$WithGhc" --info | grep "^ ,(\"RTS ways\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/configure-3293-tmp=${RTS_WAYS_STAGE0#\$topdir/}
##############################################
ghc-8.10.2/configure-3295-then
ghc-8.10.2/configure:3296:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/configure-3297-    RTS_WAYS_STAGE0="$topdir/$tmp"
##############################################
ghc-8.10.2/configure-3340-
ghc-8.10.2/configure:3341:if test `expr $GhcMinVersion % 2` = "1"
ghc-8.10.2/configure-3342-then
##############################################
ghc-8.10.2/configure-3355-then
ghc-8.10.2/configure:3356:    ghc_host_os=`"${WithGhc}" +RTS --info | grep 'Host OS' | sed -e 's/.*, "//' -e 's/")//'`
ghc-8.10.2/configure-3357-
##############################################
ghc-8.10.2/configure-3361-        then
ghc-8.10.2/configure:3362:            WithGhc=`echo "${WithGhc}" | sed "s#^/\([a-zA-Z]\)/#\1:/#"`
ghc-8.10.2/configure-3363-        else
ghc-8.10.2/configure-3364-            # Canonicalise to <drive>:/path/to/ghc
ghc-8.10.2/configure:3365:            WithGhc=`cygpath -m "${WithGhc}"`
ghc-8.10.2/configure-3366-        fi
##############################################
ghc-8.10.2/configure-3376-then
ghc-8.10.2/configure:3377:        bootstrap_host=`"${WithGhc}" +RTS --info | grep '^ ,("Host platform"' | sed -e 's/.*, "//' -e 's/")//' | tr -d '\r'`
ghc-8.10.2/configure:3378:        bootstrap_target=`"${WithGhc}" +RTS --info | grep '^ ,("Target platform"' | sed -e 's/.*, "//' -e 's/")//' | tr -d '\r'`
ghc-8.10.2/configure-3379-        if test "$bootstrap_host" != "$bootstrap_target"
##############################################
ghc-8.10.2/configure-3426-test "x$ac_build_alias" = x &&
ghc-8.10.2/configure:3427:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
ghc-8.10.2/configure-3428-test "x$ac_build_alias" = x &&
ghc-8.10.2/configure-3429-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
ghc-8.10.2/configure:3430:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
ghc-8.10.2/configure-3431-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/configure-3450-IFS=$ac_save_IFS
ghc-8.10.2/configure:3451:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/configure-3452-
##############################################
ghc-8.10.2/configure-3461-else
ghc-8.10.2/configure:3462:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
ghc-8.10.2/configure-3463-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/configure-3483-IFS=$ac_save_IFS
ghc-8.10.2/configure:3484:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/configure-3485-
##############################################
ghc-8.10.2/configure-3494-else
ghc-8.10.2/configure:3495:  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
ghc-8.10.2/configure-3496-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
##############################################
ghc-8.10.2/configure-3516-IFS=$ac_save_IFS
ghc-8.10.2/configure:3517:case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
ghc-8.10.2/configure-3518-
##############################################
ghc-8.10.2/configure-3548-
ghc-8.10.2/configure:3549:        BuildArch=`echo "$build" | sed 's/-.*//'`
ghc-8.10.2/configure:3550:        BuildVendor=`echo "$build" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/configure:3551:        BuildOS=`echo "$build" | sed 's/.*-//'`
ghc-8.10.2/configure-3552-    else
##############################################
ghc-8.10.2/configure-3713-
ghc-8.10.2/configure:3714:        HostArch=`echo "$host" | sed 's/-.*//'`
ghc-8.10.2/configure:3715:        HostVendor=`echo "$host" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/configure:3716:        HostOS=`echo "$host" | sed 's/.*-//'`
ghc-8.10.2/configure-3717-    else
##############################################
ghc-8.10.2/configure-4029-
ghc-8.10.2/configure:4030:            TargetArch=`echo "$target" | sed 's/-.*//'`
ghc-8.10.2/configure:4031:            TargetVendor=`echo "$target" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/configure:4032:            TargetOS=`echo "$target" | sed 's/.*-//'`
ghc-8.10.2/configure-4033-        fi
##############################################
ghc-8.10.2/configure-4347-    BuildPlatform="$BuildArch-$BuildVendor-$BuildOS"
ghc-8.10.2/configure:4348:    BuildPlatform_CPP=`echo "$BuildPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4349:    BuildArch_CPP=`    echo "$BuildArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4350:    BuildVendor_CPP=`  echo "$BuildVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4351:    BuildOS_CPP=`      echo "$BuildOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure-4352-
ghc-8.10.2/configure-4353-    HostPlatform="$HostArch-$HostVendor-$HostOS"
ghc-8.10.2/configure:4354:    HostPlatform_CPP=`echo "$HostPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4355:    HostArch_CPP=`    echo "$HostArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4356:    HostVendor_CPP=`  echo "$HostVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4357:    HostOS_CPP=`      echo "$HostOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure-4358-
ghc-8.10.2/configure-4359-    TargetPlatform="$TargetArch-$TargetVendor-$TargetOS"
ghc-8.10.2/configure:4360:    TargetPlatform_CPP=`echo "$TargetPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4361:    TargetArch_CPP=`    echo "$TargetArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4362:    TargetVendor_CPP=`  echo "$TargetVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure:4363:    TargetOS_CPP=`      echo "$TargetOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/configure-4364-
ghc-8.10.2/configure-4365-    # we intend to pass trough --targets to llvm as is.
ghc-8.10.2/configure:4366:    LLVMTarget_CPP=`    echo "$LlvmTarget"`
ghc-8.10.2/configure-4367-
##############################################
ghc-8.10.2/configure-4554-
ghc-8.10.2/configure:4555:        hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|'`
ghc-8.10.2/configure-4556-
##############################################
ghc-8.10.2/configure-5401-$as_echo "$XcodeVersion" >&6; }
ghc-8.10.2/configure:5402:            XcodeVersion1=`echo "$XcodeVersion" | sed 's/\..*//'`
ghc-8.10.2/configure:5403:                        XcodeVersion2=`echo "$XcodeVersion" | sed 's/[^.]*\.\([^.]*\).*/\1/'`
ghc-8.10.2/configure-5404-                        { $as_echo "$as_me:${as_lineno-$LINENO}: Xcode version component 1: $XcodeVersion1" >&5
##############################################
ghc-8.10.2/configure-5640-$as_echo_n "checking whether the C compiler works... " >&6; }
ghc-8.10.2/configure:5641:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
ghc-8.10.2/configure-5642-
##############################################
ghc-8.10.2/configure-5684-	then :; else
ghc-8.10.2/configure:5685:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/configure-5686-	fi
##############################################
ghc-8.10.2/configure-5744-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
ghc-8.10.2/configure:5745:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
ghc-8.10.2/configure-5746-	  break;;
##############################################
ghc-8.10.2/configure-5853-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
ghc-8.10.2/configure:5854:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
ghc-8.10.2/configure-5855-       break;;
##############################################
ghc-8.10.2/configure-6250-  # Check for GNU $ac_path_GREP
ghc-8.10.2/configure:6251:case `"$ac_path_GREP" --version 2>&1` in
ghc-8.10.2/configure-6252-*GNU*)
##############################################
ghc-8.10.2/configure-6316-  # Check for GNU $ac_path_EGREP
ghc-8.10.2/configure:6317:case `"$ac_path_EGREP" --version 2>&1` in
ghc-8.10.2/configure-6318-*GNU*)
##############################################
ghc-8.10.2/configure-6477-do :
ghc-8.10.2/configure:6478:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/configure-6479-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
ghc-8.10.2/configure-6482-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/configure:6483:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/configure-6484-_ACEOF
##############################################
ghc-8.10.2/configure-6715-        i386-*-solaris2)
ghc-8.10.2/configure:6716:        GCC_MAJOR_MINOR=`$CC --version|grep "gcc (GCC)"|cut -d ' ' -f 3-3|cut -d '.' -f 1-2`
ghc-8.10.2/configure-6717-        if test "$GCC_MAJOR_MINOR" != "3.4"; then
##############################################
ghc-8.10.2/configure-7790-
ghc-8.10.2/configure:7791:            out=`$TmpLd --version`
ghc-8.10.2/configure-7792-            case $out in
##############################################
ghc-8.10.2/configure-9400-$as_echo_n "checking $LLC is version $LlvmVersion... " >&6; }
ghc-8.10.2/configure:9401:        if test `$LLC --version | grep -c "version $LlvmVersion"` -gt 0 ; then
ghc-8.10.2/configure-9402-            { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
##############################################
ghc-8.10.2/configure-9521-$as_echo_n "checking $OPT is version $LlvmVersion... " >&6; }
ghc-8.10.2/configure:9522:        if test `$OPT --version | grep -c "version $LlvmVersion"` -gt 0 ; then
ghc-8.10.2/configure-9523-            { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
##############################################
ghc-8.10.2/configure-9587-$as_echo_n "checking version of gcc... " >&6; }
ghc-8.10.2/configure:9588:        fp_cv_gcc_version="`$CC -v 2>&1 | sed -n -e '1,/version /s/.*version [^0-9]*\([0-9.]*\).*/\1/p'`"
ghc-8.10.2/configure-9589-        { $as_echo "$as_me:${as_lineno-$LINENO}: result: $fp_cv_gcc_version" >&5
##############################################
ghc-8.10.2/configure-10718-fp_prog_ar_is_gnu=$fp_cv_prog_ar_is_gnu
ghc-8.10.2/configure:10719:ArIsGNUAr=`echo $fp_prog_ar_is_gnu | tr 'a-z' 'A-Z'`
ghc-8.10.2/configure-10720-
##############################################
ghc-8.10.2/configure-10774-"$fp_prog_ar" $fp_prog_ar_args conftest.a @conftest.atfile > /dev/null 2>&1
ghc-8.10.2/configure:10775:fp_prog_ar_supports_atfile_tmp=`"$fp_prog_ar" t conftest.a 2> /dev/null | grep -c conftest.file`
ghc-8.10.2/configure-10776-rm -f conftest*
##############################################
ghc-8.10.2/configure-10786-fp_prog_ar_supports_atfile=$fp_cv_prog_ar_supports_atfile
ghc-8.10.2/configure:10787:ArSupportsAtFile=`echo $fp_prog_ar_supports_atfile | tr 'a-z' 'A-Z'`
ghc-8.10.2/configure-10788-
##############################################
ghc-8.10.2/configure-11504-    # Canonicalise to <drive>:/path/to/gcc
ghc-8.10.2/configure:11505:    HSCOLOUR=`cygpath -m ${HSCOLOUR}`
ghc-8.10.2/configure-11506-fi
##############################################
ghc-8.10.2/configure-11553-  if test -n "$SPHINXBUILD"; then
ghc-8.10.2/configure:11554:  fp_cv_sphinx_version=`"$SPHINXBUILD" --version 2>&1 | sed 's/.* \([0-9]\.[0-9]\.[0-9]\)/\1/' | head -n1`;
ghc-8.10.2/configure-11555-fi;
##############################################
ghc-8.10.2/configure-11729-# other suffix.
ghc-8.10.2/configure:11730:fp_ghc_pkg_guess=`echo "$WithGhc" | sed -e 's/-stage[0-9]$//' -e 's,ghc\([^/\\]*\)$,ghc-pkg\1,'`
ghc-8.10.2/configure-11731-if "$fp_ghc_pkg_guess" list > /dev/null 2>&1; then
##############################################
ghc-8.10.2/configure-12239-do :
ghc-8.10.2/configure:12240:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/configure-12241-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/configure-12243-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/configure:12244:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/configure-12245-_ACEOF
##############################################
ghc-8.10.2/configure-13096-
ghc-8.10.2/configure:13097:as_ac_Type=`$as_echo "ac_cv_type_void *" | $as_tr_sh`
ghc-8.10.2/configure-13098-ac_fn_c_check_type "$LINENO" "void *" "$as_ac_Type" "$ac_includes_default"
##############################################
ghc-8.10.2/configure-13700-do :
ghc-8.10.2/configure:13701:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/configure-13702-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/configure-13704-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/configure:13705:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/configure-13706-_ACEOF
##############################################
ghc-8.10.2/configure-14351-  for ac_func in _getb67 GETB67 getb67; do
ghc-8.10.2/configure:14352:    as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/configure-14353-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/configure-14438-do :
ghc-8.10.2/configure:14439:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/configure-14440-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/configure-14442-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/configure:14443:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/configure-14444-_ACEOF
##############################################
ghc-8.10.2/configure-15080-$as_echo "$fptools_cv_leading_underscore" >&6; };
ghc-8.10.2/configure:15081:LeadingUnderscore=`echo $fptools_cv_leading_underscore | sed 'y/yesno/YESNO/'`
ghc-8.10.2/configure-15082-
##############################################
ghc-8.10.2/configure-15203-do :
ghc-8.10.2/configure:15204:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ghc-8.10.2/configure-15205-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
ghc-8.10.2/configure-15207-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/configure:15208:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
ghc-8.10.2/configure-15209-_ACEOF
##############################################
ghc-8.10.2/configure-15847-do :
ghc-8.10.2/configure:15848:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ghc-8.10.2/configure-15849-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
ghc-8.10.2/configure-15851-  cat >>confdefs.h <<_ACEOF
ghc-8.10.2/configure:15852:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
ghc-8.10.2/configure-15853-_ACEOF
##############################################
ghc-8.10.2/configure-15951-cabal_file=base/base.cabal
ghc-8.10.2/configure:15952:LIBRARY_base_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/configure-15953-
##############################################
ghc-8.10.2/configure-15956-cabal_file=Cabal/Cabal/Cabal.cabal
ghc-8.10.2/configure:15957:LIBRARY_Cabal_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/configure-15958-
##############################################
ghc-8.10.2/configure-15961-cabal_file=template-haskell/template-haskell.cabal.in
ghc-8.10.2/configure:15962:LIBRARY_template_haskell_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/configure-15963-
##############################################
ghc-8.10.2/configure-15966-cabal_file=parallel/parallel.cabal
ghc-8.10.2/configure:15967:LIBRARY_parallel_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/configure-15968-
##############################################
ghc-8.10.2/configure-15971-cabal_file=array/array.cabal
ghc-8.10.2/configure:15972:LIBRARY_array_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/configure-15973-
##############################################
ghc-8.10.2/configure-15976-cabal_file=ghc-prim/ghc-prim.cabal
ghc-8.10.2/configure:15977:LIBRARY_ghc_prim_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/configure-15978-
##############################################
ghc-8.10.2/configure-15981-cabal_file=ghc-compact/ghc-compact.cabal
ghc-8.10.2/configure:15982:LIBRARY_ghc_compact_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/configure-15983-
##############################################
ghc-8.10.2/configure-16005-checkMake380() {
ghc-8.10.2/configure:16006:    make_ver=`$1 --version 2>&1 | head -1`
ghc-8.10.2/configure-16007-    if echo "$make_ver" | grep 'GNU Make 3\.80' > /dev/null
##############################################
ghc-8.10.2/configure-16120-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
ghc-8.10.2/configure:16121:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
ghc-8.10.2/configure-16122-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
ghc-8.10.2/configure-16188-if test -z "$BASH_VERSION$ZSH_VERSION" \
ghc-8.10.2/configure:16189:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/configure-16190-  as_echo='print -r --'
ghc-8.10.2/configure-16191-  as_echo_n='print -rn --'
ghc-8.10.2/configure:16192:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
ghc-8.10.2/configure-16193-  as_echo='printf %s\n'
##############################################
ghc-8.10.2/configure-16195-else
ghc-8.10.2/configure:16196:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
ghc-8.10.2/configure-16197-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
ghc-8.10.2/configure-16205-	expr "X$arg" : "X\\(.*\\)$as_nl";
ghc-8.10.2/configure:16206:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
ghc-8.10.2/configure-16207-      esac;
##############################################
ghc-8.10.2/configure-16282-# ----------------------------------------
ghc-8.10.2/configure:16283:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
ghc-8.10.2/configure-16284-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
ghc-8.10.2/configure-16354-  {
ghc-8.10.2/configure:16355:    as_val=`expr "$@" || test $? -eq 1`
ghc-8.10.2/configure-16356-  }
##############################################
ghc-8.10.2/configure-16458-      case $as_dir in #(
ghc-8.10.2/configure:16459:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
ghc-8.10.2/configure-16460-      *) as_qdir=$as_dir;;
##############################################
ghc-8.10.2/configure-16589-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ghc-8.10.2/configure:16590:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ghc-8.10.2/configure-16591-ac_cs_version="\\
##############################################
ghc-8.10.2/configure-16612-  --*=?*)
ghc-8.10.2/configure:16613:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/configure:16614:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ghc-8.10.2/configure-16615-    ac_shift=:
##############################################
ghc-8.10.2/configure-16617-  --*=)
ghc-8.10.2/configure:16618:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
ghc-8.10.2/configure-16619-    ac_optarg=
##############################################
ghc-8.10.2/configure-16641-    case $ac_optarg in
ghc-8.10.2/configure:16642:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/configure-16643-    '') as_fn_error $? "missing file argument" ;;
##############################################
ghc-8.10.2/configure-16649-    case $ac_optarg in
ghc-8.10.2/configure:16650:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
ghc-8.10.2/configure-16651-    esac
##############################################
ghc-8.10.2/configure-16791-fi
ghc-8.10.2/configure:16792:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
ghc-8.10.2/configure-16793-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
ghc-8.10.2/configure-16808-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ghc-8.10.2/configure:16809:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ghc-8.10.2/configure-16810-ac_delim='%!_!# '
##############################################
ghc-8.10.2/configure-16814-
ghc-8.10.2/configure:16815:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
ghc-8.10.2/configure-16816-  if test $ac_delim_n = $ac_delim_num; then
##############################################
ghc-8.10.2/configure-16952-for ac_last_try in false false :; do
ghc-8.10.2/configure:16953:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
ghc-8.10.2/configure-16954-  if test -z "$ac_tt"; then
##############################################
ghc-8.10.2/configure-17084-      esac
ghc-8.10.2/configure:17085:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
ghc-8.10.2/configure-17086-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
ghc-8.10.2/configure-17143-*)
ghc-8.10.2/configure:17144:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
ghc-8.10.2/configure-17145-  # A ".." for each directory in $ac_dir_suffix.
ghc-8.10.2/configure:17146:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
ghc-8.10.2/configure-17147-  case $ac_top_builddir_sub in
##############################################
ghc-8.10.2/configure-17199-/@mandir@/p'
ghc-8.10.2/configure:17200:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
ghc-8.10.2/configure-17201-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
ghc-8.10.2/configure-17216-
ghc-8.10.2/configure:17217:# Neutralize VPATH when `$srcdir' = `.'.
ghc-8.10.2/configure-17218-# Shell code in configure.ac might set extrasub.
##############################################
ghc-8.10.2/configure-17243-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
ghc-8.10.2/configure:17244:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
ghc-8.10.2/configure-17245-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
ghc-8.10.2/mk/config.mk.in-668-# We'll assume we compile with gcc or clang, and both support `-S` and can as such use the
ghc-8.10.2/mk/config.mk.in:669:# --via-asm pass, which should be faster and is required for cross compiling to windows, as
ghc-8.10.2/mk/config.mk.in-670-# the c compiler complains about non-constant expressions even though they are constant and
##############################################
ghc-8.10.2/install-sh-229-      fi
ghc-8.10.2/install-sh:230:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
ghc-8.10.2/install-sh-231-    *)
##############################################
ghc-8.10.2/install-sh-276-      dstdir=$dst
ghc-8.10.2/install-sh:277:      dst=$dstdir/`basename "$src"`
ghc-8.10.2/install-sh-278-      dstdir_status=0
##############################################
ghc-8.10.2/install-sh-358-		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
ghc-8.10.2/install-sh:359:		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
ghc-8.10.2/install-sh-360-		   case $ls_ld_tmpdir in
##############################################
ghc-8.10.2/install-sh-365-		   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
ghc-8.10.2/install-sh:366:		     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
ghc-8.10.2/install-sh-367-		     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
ghc-8.10.2/install-sh-425-	    case $prefix in
ghc-8.10.2/install-sh:426:	      *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
ghc-8.10.2/install-sh-427-	      *) qprefix=$prefix;;
##############################################
ghc-8.10.2/install-sh-474-    if $copy_on_change &&
ghc-8.10.2/install-sh:475:       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
ghc-8.10.2/install-sh:476:       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
ghc-8.10.2/install-sh-477-
##############################################
ghc-8.10.2/bindisttest/checkBinaries.sh-11-        # Looks like a GHC executable. Is it for the right version?
ghc-8.10.2/bindisttest/checkBinaries.sh:12:        THIS_VERSION=`./$f +RTS --info | grep '"GHC version"' | sed -e 's/^ ,("GHC version", "//' -e 's/")$//'`
ghc-8.10.2/bindisttest/checkBinaries.sh-13-        if [ "$THIS_VERSION" != "$EXPECTED_VERSION" ]
##############################################
ghc-8.10.2/ghc/Main.hs-155-  -- can be further adjusted on a module by module basis, using only
ghc-8.10.2/ghc/Main.hs:156:  -- the -fvia-C and -fasm flags.  If the default HscTarget is not
ghc-8.10.2/ghc/Main.hs:157:  -- HscC or HscAsm, -fvia-C and -fasm have no effect.
ghc-8.10.2/ghc/Main.hs-158-  let dflt_target = hscTarget dflags0
##############################################
ghc-8.10.2/includes/rts/Ticky.h-20-typedef struct _StgEntCounter {
ghc-8.10.2/includes/rts/Ticky.h:21:  /* Using StgWord for everything, because both the C and asm code
ghc-8.10.2/includes/rts/Ticky.h-22-     generators make trouble if you try to pack things tighter */
##############################################
ghc-8.10.2/rts/LinkerInternals.h-324-pathchar*
ghc-8.10.2/rts/LinkerInternals.h:325:resolveSymbolAddr (pathchar* buffer, int size,
ghc-8.10.2/rts/LinkerInternals.h-326-                   SymbolAddr* symbol, uintptr_t* top);
##############################################
ghc-8.10.2/rts/RtsStartup.c-92-  // Grab the control word
ghc-8.10.2/rts/RtsStartup.c:93:  __asm __volatile ("fnstcw %0" : "=m" (fpu_cw));
ghc-8.10.2/rts/RtsStartup.c-94-
##############################################
ghc-8.10.2/rts/RtsStartup.c-102-  // Store the new control word back
ghc-8.10.2/rts/RtsStartup.c:103:  __asm __volatile ("fldcw %0" : : "m" (fpu_cw));
ghc-8.10.2/rts/RtsStartup.c-104-#else
##############################################
ghc-8.10.2/rts/linker/PEi386.c-2146-
ghc-8.10.2/rts/linker/PEi386.c:2147:    if (SymFromAddr (hProcess, (uintptr_t)symbol, &uDisplacement, &sym))
ghc-8.10.2/rts/linker/PEi386.c-2148-    {
##############################################
ghc-8.10.2/rts/win32/veh_excn.c-326-                 (uintptr_t)stackFrame.AddrFrame.Offset,
ghc-8.10.2/rts/win32/veh_excn.c:327:                 resolveSymbolAddr ((wchar_t*)&buffer, 1024,
ghc-8.10.2/rts/win32/veh_excn.c-328-                                   (SymbolAddr*)(intptr_t)stackFrame.AddrPC.Offset,
##############################################
ghc-8.10.2/rts/PrimOps.cmm-2059-    W_ r;
ghc-8.10.2/rts/PrimOps.cmm:2060:    r = spEntry_addr(W_[stable_ptr_table] + sp*SIZEOF_spEntry);
ghc-8.10.2/rts/PrimOps.cmm-2061-    return (r);
##############################################
ghc-8.10.2/rts/Linker.c-81-   When adding support for a new platform to the runtime linker please
ghc-8.10.2/rts/Linker.c:82:   update `$TOP/configure.ac` under heading `Does target have runtime
ghc-8.10.2/rts/Linker.c-83-   linker support?`.
##############################################
ghc-8.10.2/rts/Linker.c-994-pathchar*
ghc-8.10.2/rts/Linker.c:995:resolveSymbolAddr (pathchar* buffer, int size,
ghc-8.10.2/rts/Linker.c-996-                   SymbolAddr* symbol, uintptr_t* top)
##############################################
ghc-8.10.2/rts/OldARMAtomic.c-30-
ghc-8.10.2/rts/OldARMAtomic.c:31:  asm volatile (
ghc-8.10.2/rts/OldARMAtomic.c-32-    "swp %0, %1, [%2]\n"
##############################################
ghc-8.10.2/debian/rules-218-	for f in `find debian/tmp/usr/share/doc/ghc-doc/html/libraries/ -maxdepth 1 -mindepth 1 -type d`; do \
ghc-8.10.2/debian/rules:219:	    mkdir debian/tmp/usr/lib/ghc-doc/haddock/ghc/`basename $$f` ; \
ghc-8.10.2/debian/rules:220:	    mv $$f/*.haddock debian/tmp/usr/lib/ghc-doc/haddock/ghc/`basename $$f` ; done
ghc-8.10.2/debian/rules-221-	cd debian/tmp/usr/share/doc/ghc-doc/html/libraries/; ln -s ghc-$(ProjectVersion) ghc
##############################################
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-855-		    $(INSTALL_DATA) $(INSTALL_OPTS) $$i $2; \
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk:856:		    $(RANLIB_CMD) $2/`basename $$i` ;; \
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-857-		  *.dll) \
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-858-		    $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $2 ; \
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk:859:		    $(STRIP_CMD) $2/`basename $$i` ;; \
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-860-		  *.so) \
##############################################
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-1180-VERSION:
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk:1181:	@if test -f $@ && test "`cat $@`" = "$(ProjectVersion)"; \
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-1182-	then echo "$@ needs no update"; \
##############################################
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-1194-	fi
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk:1195:	@if test -f $@ && test "`cat $@`" = "$(ProjectGitCommitId)"; \
ghc-8.10.2/.pc/use-debian-gen_contents_index/ghc.mk-1196-	then echo "$@ needs no update"; \
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-64-
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:65:        BuildArch=`echo "$build" | sed 's/-.*//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:66:        BuildVendor=`echo "$build" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:67:        BuildOS=`echo "$build" | sed 's/.*-//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-68-    else
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-84-
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:85:        HostArch=`echo "$host" | sed 's/-.*//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:86:        HostVendor=`echo "$host" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:87:        HostOS=`echo "$host" | sed 's/.*-//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-88-    else
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-110-
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:111:            TargetArch=`echo "$target" | sed 's/-.*//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:112:            TargetVendor=`echo "$target" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:113:            TargetOS=`echo "$target" | sed 's/.*-//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-114-        fi
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-132-    BuildPlatform="$BuildArch-$BuildVendor-$BuildOS"
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:133:    BuildPlatform_CPP=`echo "$BuildPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:134:    BuildArch_CPP=`    echo "$BuildArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:135:    BuildVendor_CPP=`  echo "$BuildVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:136:    BuildOS_CPP=`      echo "$BuildOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-137-
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-138-    HostPlatform="$HostArch-$HostVendor-$HostOS"
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:139:    HostPlatform_CPP=`echo "$HostPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:140:    HostArch_CPP=`    echo "$HostArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:141:    HostVendor_CPP=`  echo "$HostVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:142:    HostOS_CPP=`      echo "$HostOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-143-
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-144-    TargetPlatform="$TargetArch-$TargetVendor-$TargetOS"
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:145:    TargetPlatform_CPP=`echo "$TargetPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:146:    TargetArch_CPP=`    echo "$TargetArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:147:    TargetVendor_CPP=`  echo "$TargetVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:148:    TargetOS_CPP=`      echo "$TargetOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-149-
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-150-    # we intend to pass trough --targets to llvm as is.
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:151:    LLVMTarget_CPP=`    echo "$LlvmTarget"`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-152-
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-947-esac]);
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:948:AC_SUBST([LeadingUnderscore], [`echo $fptools_cv_leading_underscore | sed 'y/yesno/YESNO/'`])
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-949-if test x"$fptools_cv_leading_underscore" = xyes; then
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1204-fp_prog_ar_is_gnu=$fp_cv_prog_ar_is_gnu
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1205:AC_SUBST([ArIsGNUAr], [`echo $fp_prog_ar_is_gnu | tr 'a-z' 'A-Z'`])
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1206-])# FP_PROG_AR_IS_GNU
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1222-"$fp_prog_ar" $fp_prog_ar_args conftest.a @conftest.atfile > /dev/null 2>&1
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1223:fp_prog_ar_supports_atfile_tmp=`"$fp_prog_ar" t conftest.a 2> /dev/null | grep -c conftest.file`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1224-rm -f conftest*
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1231-fp_prog_ar_supports_atfile=$fp_cv_prog_ar_supports_atfile
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1232:AC_SUBST([ArSupportsAtFile], [`echo $fp_prog_ar_supports_atfile | tr 'a-z' 'A-Z'`])
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1233-])# FP_PROG_AR_SUPPORTS_ATFILE
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1339-        AC_MSG_CHECKING([version of gcc])
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1340:        fp_cv_gcc_version="`$CC -v 2>&1 | sed -n -e '1,/version /s/.*version [[^0-9]]*\([[0-9.]]*\).*/\1/p'`"
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1341-        AC_MSG_RESULT([$fp_cv_gcc_version])
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1490-  fi
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1491:fptools_version_of_ghc[_major]=`echo [$]fptools_version_of_ghc | sed -e 's/^\([[0-9]]\).*/\1/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1492:fptools_version_of_ghc[_minor]=`echo [$]fptools_version_of_ghc | sed -e 's/^[[0-9]]\.\([[0-9]]*\).*/\1/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1493:fptools_version_of_ghc[_pl]=`echo [$]fptools_version_of_ghc | sed -n -e 's/^[[0-9]]\.[[0-9]]*\.\([[0-9]]*\)/\1/p'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1494-#
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1550-# other suffix.
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1551:fp_ghc_pkg_guess=`echo "$WithGhc" | sed -e 's/-stage@<:@0-9@:>@$//' -e 's,ghc\(@<:@^/\\@:>@*\)$,ghc-pkg\1,'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1552-if "$fp_ghc_pkg_guess" list > /dev/null 2>&1; then
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1595-        ver_posixtime=`git log -1 --pretty=format:%ct`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1596:        ver_date=`perl -MPOSIX -e "print strftime('%Y%m%d', gmtime($ver_posixtime));"`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1597-        if echo $ver_date | grep '^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$' 2>&1 >/dev/null; then true; else
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1642-# Split PACKAGE_VERSION into (possibly empty) parts
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1643:VERSION_MAJOR=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1644:VERSION_TMP=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1645:VERSION_MINOR=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1646:ProjectPatchLevel=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1647-
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1659-# Save split version of ProjectPatchLevel
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1660:ProjectPatchLevel1=`echo $ProjectPatchLevel | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1661:ProjectPatchLevel2=`echo $ProjectPatchLevel | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1662-
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1666-# Remove dots from the patch level; this allows us to have versions like 6.4.1.20050508
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1667:ProjectPatchLevel=`echo $ProjectPatchLevel | sed 's/\.//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1668-
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1888-      dnl the build system might depend on it (such as the sed expression
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1889:      dnl `"s|$(TOP)/||i"` in addCFileDeps in rules/build-dependencies.mk).
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1890-      hardtop=$(cygpath -m "$(pwd)")
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1895-    dnl Remove common automounter nonsense
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:1896:    hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-1897-
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2114-AC_DEFUN([BOOTSTRAPPING_GHC_INFO_FIELD],[
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2115:$1=`"$WithGhc" --info | grep "^ ,(\"$2\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2116-tmp=${$1#\$topdir/}
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2118-then
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2119:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2120-    $1="$topdir/$tmp"
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2131-cabal_file=m4_default([$2],[$1/$1.cabal])
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2132:LIBRARY_[]translit([$1], [-], [_])[]_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2133-AC_SUBST(LIBRARY_[]translit([$1], [-], [_])[]_VERSION)
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2151-            AC_MSG_RESULT($XcodeVersion)
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2152:            XcodeVersion1=`echo "$XcodeVersion" | sed 's/\..*//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2153-            changequote(, )dnl
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2154:            XcodeVersion2=`echo "$XcodeVersion" | sed 's/[^.]*\.\([^.]*\).*/\1/'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2155-            changequote([, ])dnl
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2176-        AC_MSG_CHECKING([$$1 is version $3])
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2177:        if test `$$1 --version | grep -c "version $3"` -gt 0 ; then
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2178-            AC_MSG_RESULT(yes)
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2257-AC_DEFUN([FIND_GHC_BOOTSTRAP_PROG],[
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2258:    BootstrapTmpCmd=`grep $3 $($2 --print-libdir)/settings 2>/dev/null | sed 's/.*", "//;s/".*//'`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2259:    if test -n "$BootstrapTmpCmd" && test `basename $BootstrapTmpCmd` = $BootstrapTmpCmd ; then
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2260-        AC_PATH_PROG([$1], [$BootstrapTmpCmd], "")
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2305-        i386-*-solaris2)
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2306:        GCC_MAJOR_MINOR=`$CC --version|grep "gcc (GCC)"|cut -d ' ' -f 3-3|cut -d '.' -f 1-2`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2307-        if test "$GCC_MAJOR_MINOR" != "3.4"; then
##############################################
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2477-
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4:2478:            out=`$TmpLd --version`
ghc-8.10.2/.pc/ARM-VFPv3D16/aclocal.m4-2479-            case $out in
##############################################
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-854-		    $(INSTALL_DATA) $(INSTALL_OPTS) $$i $2; \
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk:855:		    $(RANLIB_CMD) $2/`basename $$i` ;; \
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-856-		  *.dll) \
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-857-		    $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $2 ; \
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk:858:		    $(STRIP_CMD) $2/`basename $$i` ;; \
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-859-		  *.so) \
##############################################
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-1174-VERSION:
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk:1175:	@if test -f $@ && test "`cat $@`" = "$(ProjectVersion)"; \
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-1176-	then echo "$@ needs no update"; \
##############################################
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-1188-	fi
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk:1189:	@if test -f $@ && test "`cat $@`" = "$(ProjectGitCommitId)"; \
ghc-8.10.2/.pc/use-stage1-binaries-for-install.patch/ghc.mk-1190-	then echo "$@ needs no update"; \
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-64-
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:65:        BuildArch=`echo "$build" | sed 's/-.*//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:66:        BuildVendor=`echo "$build" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:67:        BuildOS=`echo "$build" | sed 's/.*-//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-68-    else
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-84-
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:85:        HostArch=`echo "$host" | sed 's/-.*//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:86:        HostVendor=`echo "$host" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:87:        HostOS=`echo "$host" | sed 's/.*-//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-88-    else
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-110-
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:111:            TargetArch=`echo "$target" | sed 's/-.*//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:112:            TargetVendor=`echo "$target" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:113:            TargetOS=`echo "$target" | sed 's/.*-//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-114-        fi
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-132-    BuildPlatform="$BuildArch-$BuildVendor-$BuildOS"
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:133:    BuildPlatform_CPP=`echo "$BuildPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:134:    BuildArch_CPP=`    echo "$BuildArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:135:    BuildVendor_CPP=`  echo "$BuildVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:136:    BuildOS_CPP=`      echo "$BuildOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-137-
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-138-    HostPlatform="$HostArch-$HostVendor-$HostOS"
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:139:    HostPlatform_CPP=`echo "$HostPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:140:    HostArch_CPP=`    echo "$HostArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:141:    HostVendor_CPP=`  echo "$HostVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:142:    HostOS_CPP=`      echo "$HostOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-143-
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-144-    TargetPlatform="$TargetArch-$TargetVendor-$TargetOS"
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:145:    TargetPlatform_CPP=`echo "$TargetPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:146:    TargetArch_CPP=`    echo "$TargetArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:147:    TargetVendor_CPP=`  echo "$TargetVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:148:    TargetOS_CPP=`      echo "$TargetOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-149-
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-150-    # we intend to pass trough --targets to llvm as is.
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:151:    LLVMTarget_CPP=`    echo "$LlvmTarget"`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-152-
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-947-esac]);
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:948:AC_SUBST([LeadingUnderscore], [`echo $fptools_cv_leading_underscore | sed 'y/yesno/YESNO/'`])
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-949-if test x"$fptools_cv_leading_underscore" = xyes; then
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1204-fp_prog_ar_is_gnu=$fp_cv_prog_ar_is_gnu
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1205:AC_SUBST([ArIsGNUAr], [`echo $fp_prog_ar_is_gnu | tr 'a-z' 'A-Z'`])
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1206-])# FP_PROG_AR_IS_GNU
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1222-"$fp_prog_ar" $fp_prog_ar_args conftest.a @conftest.atfile > /dev/null 2>&1
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1223:fp_prog_ar_supports_atfile_tmp=`"$fp_prog_ar" t conftest.a 2> /dev/null | grep -c conftest.file`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1224-rm -f conftest*
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1231-fp_prog_ar_supports_atfile=$fp_cv_prog_ar_supports_atfile
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1232:AC_SUBST([ArSupportsAtFile], [`echo $fp_prog_ar_supports_atfile | tr 'a-z' 'A-Z'`])
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1233-])# FP_PROG_AR_SUPPORTS_ATFILE
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1339-        AC_MSG_CHECKING([version of gcc])
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1340:        fp_cv_gcc_version="`$CC -v 2>&1 | sed -n -e '1,/version /s/.*version [[^0-9]]*\([[0-9.]]*\).*/\1/p'`"
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1341-        AC_MSG_RESULT([$fp_cv_gcc_version])
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1490-  fi
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1491:fptools_version_of_ghc[_major]=`echo [$]fptools_version_of_ghc | sed -e 's/^\([[0-9]]\).*/\1/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1492:fptools_version_of_ghc[_minor]=`echo [$]fptools_version_of_ghc | sed -e 's/^[[0-9]]\.\([[0-9]]*\).*/\1/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1493:fptools_version_of_ghc[_pl]=`echo [$]fptools_version_of_ghc | sed -n -e 's/^[[0-9]]\.[[0-9]]*\.\([[0-9]]*\)/\1/p'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1494-#
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1550-# other suffix.
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1551:fp_ghc_pkg_guess=`echo "$WithGhc" | sed -e 's/-stage@<:@0-9@:>@$//' -e 's,ghc\(@<:@^/\\@:>@*\)$,ghc-pkg\1,'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1552-if "$fp_ghc_pkg_guess" list > /dev/null 2>&1; then
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1595-        ver_posixtime=`git log -1 --pretty=format:%ct`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1596:        ver_date=`perl -MPOSIX -e "print strftime('%Y%m%d', gmtime($ver_posixtime));"`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1597-        if echo $ver_date | grep '^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$' 2>&1 >/dev/null; then true; else
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1642-# Split PACKAGE_VERSION into (possibly empty) parts
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1643:VERSION_MAJOR=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1644:VERSION_TMP=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1645:VERSION_MINOR=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1646:ProjectPatchLevel=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1647-
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1659-# Save split version of ProjectPatchLevel
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1660:ProjectPatchLevel1=`echo $ProjectPatchLevel | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1661:ProjectPatchLevel2=`echo $ProjectPatchLevel | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1662-
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1666-# Remove dots from the patch level; this allows us to have versions like 6.4.1.20050508
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1667:ProjectPatchLevel=`echo $ProjectPatchLevel | sed 's/\.//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1668-
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1888-      dnl the build system might depend on it (such as the sed expression
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1889:      dnl `"s|$(TOP)/||i"` in addCFileDeps in rules/build-dependencies.mk).
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1890-      hardtop=$(cygpath -m "$(pwd)")
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1895-    dnl Remove common automounter nonsense
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:1896:    hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-1897-
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2114-AC_DEFUN([BOOTSTRAPPING_GHC_INFO_FIELD],[
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2115:$1=`"$WithGhc" --info | grep "^ ,(\"$2\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2116-tmp=${$1#\$topdir/}
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2118-then
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2119:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2120-    $1="$topdir/$tmp"
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2131-cabal_file=m4_default([$2],[$1/$1.cabal])
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2132:LIBRARY_[]translit([$1], [-], [_])[]_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2133-AC_SUBST(LIBRARY_[]translit([$1], [-], [_])[]_VERSION)
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2151-            AC_MSG_RESULT($XcodeVersion)
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2152:            XcodeVersion1=`echo "$XcodeVersion" | sed 's/\..*//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2153-            changequote(, )dnl
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2154:            XcodeVersion2=`echo "$XcodeVersion" | sed 's/[^.]*\.\([^.]*\).*/\1/'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2155-            changequote([, ])dnl
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2176-        AC_MSG_CHECKING([$$1 is version $3])
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2177:        if test `$$1 --version | grep -c "version $3"` -gt 0 ; then
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2178-            AC_MSG_RESULT(yes)
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2257-AC_DEFUN([FIND_GHC_BOOTSTRAP_PROG],[
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2258:    BootstrapTmpCmd=`grep $3 $($2 --print-libdir)/settings 2>/dev/null | sed 's/.*", "//;s/".*//'`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2259:    if test -n "$BootstrapTmpCmd" && test `basename $BootstrapTmpCmd` = $BootstrapTmpCmd ; then
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2260-        AC_PATH_PROG([$1], [$BootstrapTmpCmd], "")
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2305-        i386-*-solaris2)
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2306:        GCC_MAJOR_MINOR=`$CC --version|grep "gcc (GCC)"|cut -d ' ' -f 3-3|cut -d '.' -f 1-2`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2307-        if test "$GCC_MAJOR_MINOR" != "3.4"; then
##############################################
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2477-
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4:2478:            out=`$TmpLd --version`
ghc-8.10.2/.pc/kfreebsd-aclocal.m4/aclocal.m4-2479-            case $out in
##############################################
ghc-8.10.2/ghc.mk-854-		    $(INSTALL_DATA) $(INSTALL_OPTS) $$i $2; \
ghc-8.10.2/ghc.mk:855:		    $(RANLIB_CMD) $2/`basename $$i` ;; \
ghc-8.10.2/ghc.mk-856-		  *.dll) \
ghc-8.10.2/ghc.mk-857-		    $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $2 ; \
ghc-8.10.2/ghc.mk:858:		    $(STRIP_CMD) $2/`basename $$i` ;; \
ghc-8.10.2/ghc.mk-859-		  *.so) \
##############################################
ghc-8.10.2/ghc.mk-1178-VERSION:
ghc-8.10.2/ghc.mk:1179:	@if test -f $@ && test "`cat $@`" = "$(ProjectVersion)"; \
ghc-8.10.2/ghc.mk-1180-	then echo "$@ needs no update"; \
##############################################
ghc-8.10.2/ghc.mk-1192-	fi
ghc-8.10.2/ghc.mk:1193:	@if test -f $@ && test "`cat $@`" = "$(ProjectGitCommitId)"; \
ghc-8.10.2/ghc.mk-1194-	then echo "$@ needs no update"; \
##############################################
ghc-8.10.2/aclocal.m4-64-
ghc-8.10.2/aclocal.m4:65:        BuildArch=`echo "$build" | sed 's/-.*//'`
ghc-8.10.2/aclocal.m4:66:        BuildVendor=`echo "$build" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/aclocal.m4:67:        BuildOS=`echo "$build" | sed 's/.*-//'`
ghc-8.10.2/aclocal.m4-68-    else
##############################################
ghc-8.10.2/aclocal.m4-84-
ghc-8.10.2/aclocal.m4:85:        HostArch=`echo "$host" | sed 's/-.*//'`
ghc-8.10.2/aclocal.m4:86:        HostVendor=`echo "$host" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/aclocal.m4:87:        HostOS=`echo "$host" | sed 's/.*-//'`
ghc-8.10.2/aclocal.m4-88-    else
##############################################
ghc-8.10.2/aclocal.m4-110-
ghc-8.10.2/aclocal.m4:111:            TargetArch=`echo "$target" | sed 's/-.*//'`
ghc-8.10.2/aclocal.m4:112:            TargetVendor=`echo "$target" | sed -e 's/.*-\(.*\)-.*/\1/'`
ghc-8.10.2/aclocal.m4:113:            TargetOS=`echo "$target" | sed 's/.*-//'`
ghc-8.10.2/aclocal.m4-114-        fi
##############################################
ghc-8.10.2/aclocal.m4-132-    BuildPlatform="$BuildArch-$BuildVendor-$BuildOS"
ghc-8.10.2/aclocal.m4:133:    BuildPlatform_CPP=`echo "$BuildPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:134:    BuildArch_CPP=`    echo "$BuildArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:135:    BuildVendor_CPP=`  echo "$BuildVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:136:    BuildOS_CPP=`      echo "$BuildOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4-137-
ghc-8.10.2/aclocal.m4-138-    HostPlatform="$HostArch-$HostVendor-$HostOS"
ghc-8.10.2/aclocal.m4:139:    HostPlatform_CPP=`echo "$HostPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:140:    HostArch_CPP=`    echo "$HostArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:141:    HostVendor_CPP=`  echo "$HostVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:142:    HostOS_CPP=`      echo "$HostOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4-143-
ghc-8.10.2/aclocal.m4-144-    TargetPlatform="$TargetArch-$TargetVendor-$TargetOS"
ghc-8.10.2/aclocal.m4:145:    TargetPlatform_CPP=`echo "$TargetPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:146:    TargetArch_CPP=`    echo "$TargetArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:147:    TargetVendor_CPP=`  echo "$TargetVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4:148:    TargetOS_CPP=`      echo "$TargetOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
ghc-8.10.2/aclocal.m4-149-
ghc-8.10.2/aclocal.m4-150-    # we intend to pass trough --targets to llvm as is.
ghc-8.10.2/aclocal.m4:151:    LLVMTarget_CPP=`    echo "$LlvmTarget"`
ghc-8.10.2/aclocal.m4-152-
##############################################
ghc-8.10.2/aclocal.m4-947-esac]);
ghc-8.10.2/aclocal.m4:948:AC_SUBST([LeadingUnderscore], [`echo $fptools_cv_leading_underscore | sed 'y/yesno/YESNO/'`])
ghc-8.10.2/aclocal.m4-949-if test x"$fptools_cv_leading_underscore" = xyes; then
##############################################
ghc-8.10.2/aclocal.m4-1204-fp_prog_ar_is_gnu=$fp_cv_prog_ar_is_gnu
ghc-8.10.2/aclocal.m4:1205:AC_SUBST([ArIsGNUAr], [`echo $fp_prog_ar_is_gnu | tr 'a-z' 'A-Z'`])
ghc-8.10.2/aclocal.m4-1206-])# FP_PROG_AR_IS_GNU
##############################################
ghc-8.10.2/aclocal.m4-1222-"$fp_prog_ar" $fp_prog_ar_args conftest.a @conftest.atfile > /dev/null 2>&1
ghc-8.10.2/aclocal.m4:1223:fp_prog_ar_supports_atfile_tmp=`"$fp_prog_ar" t conftest.a 2> /dev/null | grep -c conftest.file`
ghc-8.10.2/aclocal.m4-1224-rm -f conftest*
##############################################
ghc-8.10.2/aclocal.m4-1231-fp_prog_ar_supports_atfile=$fp_cv_prog_ar_supports_atfile
ghc-8.10.2/aclocal.m4:1232:AC_SUBST([ArSupportsAtFile], [`echo $fp_prog_ar_supports_atfile | tr 'a-z' 'A-Z'`])
ghc-8.10.2/aclocal.m4-1233-])# FP_PROG_AR_SUPPORTS_ATFILE
##############################################
ghc-8.10.2/aclocal.m4-1339-        AC_MSG_CHECKING([version of gcc])
ghc-8.10.2/aclocal.m4:1340:        fp_cv_gcc_version="`$CC -v 2>&1 | sed -n -e '1,/version /s/.*version [[^0-9]]*\([[0-9.]]*\).*/\1/p'`"
ghc-8.10.2/aclocal.m4-1341-        AC_MSG_RESULT([$fp_cv_gcc_version])
##############################################
ghc-8.10.2/aclocal.m4-1490-  fi
ghc-8.10.2/aclocal.m4:1491:fptools_version_of_ghc[_major]=`echo [$]fptools_version_of_ghc | sed -e 's/^\([[0-9]]\).*/\1/'`
ghc-8.10.2/aclocal.m4:1492:fptools_version_of_ghc[_minor]=`echo [$]fptools_version_of_ghc | sed -e 's/^[[0-9]]\.\([[0-9]]*\).*/\1/'`
ghc-8.10.2/aclocal.m4:1493:fptools_version_of_ghc[_pl]=`echo [$]fptools_version_of_ghc | sed -n -e 's/^[[0-9]]\.[[0-9]]*\.\([[0-9]]*\)/\1/p'`
ghc-8.10.2/aclocal.m4-1494-#
##############################################
ghc-8.10.2/aclocal.m4-1550-# other suffix.
ghc-8.10.2/aclocal.m4:1551:fp_ghc_pkg_guess=`echo "$WithGhc" | sed -e 's/-stage@<:@0-9@:>@$//' -e 's,ghc\(@<:@^/\\@:>@*\)$,ghc-pkg\1,'`
ghc-8.10.2/aclocal.m4-1552-if "$fp_ghc_pkg_guess" list > /dev/null 2>&1; then
##############################################
ghc-8.10.2/aclocal.m4-1595-        ver_posixtime=`git log -1 --pretty=format:%ct`
ghc-8.10.2/aclocal.m4:1596:        ver_date=`perl -MPOSIX -e "print strftime('%Y%m%d', gmtime($ver_posixtime));"`
ghc-8.10.2/aclocal.m4-1597-        if echo $ver_date | grep '^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$' 2>&1 >/dev/null; then true; else
##############################################
ghc-8.10.2/aclocal.m4-1642-# Split PACKAGE_VERSION into (possibly empty) parts
ghc-8.10.2/aclocal.m4:1643:VERSION_MAJOR=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/aclocal.m4:1644:VERSION_TMP=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/aclocal.m4:1645:VERSION_MINOR=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
ghc-8.10.2/aclocal.m4:1646:ProjectPatchLevel=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
ghc-8.10.2/aclocal.m4-1647-
##############################################
ghc-8.10.2/aclocal.m4-1659-# Save split version of ProjectPatchLevel
ghc-8.10.2/aclocal.m4:1660:ProjectPatchLevel1=`echo $ProjectPatchLevel | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1/'`
ghc-8.10.2/aclocal.m4:1661:ProjectPatchLevel2=`echo $ProjectPatchLevel | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3/'`
ghc-8.10.2/aclocal.m4-1662-
##############################################
ghc-8.10.2/aclocal.m4-1666-# Remove dots from the patch level; this allows us to have versions like 6.4.1.20050508
ghc-8.10.2/aclocal.m4:1667:ProjectPatchLevel=`echo $ProjectPatchLevel | sed 's/\.//'`
ghc-8.10.2/aclocal.m4-1668-
##############################################
ghc-8.10.2/aclocal.m4-1888-      dnl the build system might depend on it (such as the sed expression
ghc-8.10.2/aclocal.m4:1889:      dnl `"s|$(TOP)/||i"` in addCFileDeps in rules/build-dependencies.mk).
ghc-8.10.2/aclocal.m4-1890-      hardtop=$(cygpath -m "$(pwd)")
##############################################
ghc-8.10.2/aclocal.m4-1895-    dnl Remove common automounter nonsense
ghc-8.10.2/aclocal.m4:1896:    hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|'`
ghc-8.10.2/aclocal.m4-1897-
##############################################
ghc-8.10.2/aclocal.m4-2117-AC_DEFUN([BOOTSTRAPPING_GHC_INFO_FIELD],[
ghc-8.10.2/aclocal.m4:2118:$1=`"$WithGhc" --info | grep "^ ,(\"$2\"," | sed -e 's/.*","//' -e 's/")$//'`
ghc-8.10.2/aclocal.m4-2119-tmp=${$1#\$topdir/}
##############################################
ghc-8.10.2/aclocal.m4-2121-then
ghc-8.10.2/aclocal.m4:2122:    topdir=`"$WithGhc" --print-libdir | sed 's#\\\\#/#g'`
ghc-8.10.2/aclocal.m4-2123-    $1="$topdir/$tmp"
##############################################
ghc-8.10.2/aclocal.m4-2134-cabal_file=m4_default([$2],[$1/$1.cabal])
ghc-8.10.2/aclocal.m4:2135:LIBRARY_[]translit([$1], [-], [_])[]_VERSION=`grep -i "^version:" libraries/${cabal_file} | sed "s/.* //"`
ghc-8.10.2/aclocal.m4-2136-AC_SUBST(LIBRARY_[]translit([$1], [-], [_])[]_VERSION)
##############################################
ghc-8.10.2/aclocal.m4-2154-            AC_MSG_RESULT($XcodeVersion)
ghc-8.10.2/aclocal.m4:2155:            XcodeVersion1=`echo "$XcodeVersion" | sed 's/\..*//'`
ghc-8.10.2/aclocal.m4-2156-            changequote(, )dnl
ghc-8.10.2/aclocal.m4:2157:            XcodeVersion2=`echo "$XcodeVersion" | sed 's/[^.]*\.\([^.]*\).*/\1/'`
ghc-8.10.2/aclocal.m4-2158-            changequote([, ])dnl
##############################################
ghc-8.10.2/aclocal.m4-2179-        AC_MSG_CHECKING([$$1 is version $3])
ghc-8.10.2/aclocal.m4:2180:        if test `$$1 --version | grep -c "version $3"` -gt 0 ; then
ghc-8.10.2/aclocal.m4-2181-            AC_MSG_RESULT(yes)
##############################################
ghc-8.10.2/aclocal.m4-2260-AC_DEFUN([FIND_GHC_BOOTSTRAP_PROG],[
ghc-8.10.2/aclocal.m4:2261:    BootstrapTmpCmd=`grep $3 $($2 --print-libdir)/settings 2>/dev/null | sed 's/.*", "//;s/".*//'`
ghc-8.10.2/aclocal.m4:2262:    if test -n "$BootstrapTmpCmd" && test `basename $BootstrapTmpCmd` = $BootstrapTmpCmd ; then
ghc-8.10.2/aclocal.m4-2263-        AC_PATH_PROG([$1], [$BootstrapTmpCmd], "")
##############################################
ghc-8.10.2/aclocal.m4-2308-        i386-*-solaris2)
ghc-8.10.2/aclocal.m4:2309:        GCC_MAJOR_MINOR=`$CC --version|grep "gcc (GCC)"|cut -d ' ' -f 3-3|cut -d '.' -f 1-2`
ghc-8.10.2/aclocal.m4-2310-        if test "$GCC_MAJOR_MINOR" != "3.4"; then
##############################################
ghc-8.10.2/aclocal.m4-2480-
ghc-8.10.2/aclocal.m4:2481:            out=`$TmpLd --version`
ghc-8.10.2/aclocal.m4-2482-            case $out in