From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id AF6F13858D20 for ; Mon, 7 Feb 2022 11:14:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AF6F13858D20 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 122CE342F36; Mon, 7 Feb 2022 11:14:00 +0000 (UTC) Date: Mon, 7 Feb 2022 06:14:02 -0500 From: Mike Frysinger To: newlib@sourceware.org Subject: Re: [PATCH 3/5] libgloss: merge libgloss into top-level Makefile Message-ID: Mail-Followup-To: newlib@sourceware.org References: <20220205054656.11443-1-vapier@gentoo.org> <20220205054656.11443-4-vapier@gentoo.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="vMtJNrXHLiLqLGNZ" Content-Disposition: inline In-Reply-To: <20220205054656.11443-4-vapier@gentoo.org> X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Feb 2022 11:14:06 -0000 --vMtJNrXHLiLqLGNZ Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 05 Feb 2022 00:46, Mike Frysinger wrote: > +if CONFIG_LIBNOSYS > +include libnosys/Makefile.inc > +endif > --- a/libgloss/configure.ac > +++ b/libgloss/configure.ac > @@ -230,10 +230,7 @@ dnl if test "${config_testsuite}" =3D "true"; > dnl then AC_CONFIG_SUBDIRS([testsuite]) > dnl fi > =20 > -if test "${config_libnosys}" =3D "true"; then > - AC_CONFIG_FILES([libnosys/Makefile]) > - subdirs=3D"$subdirs libnosys" > -fi > +AM_CONDITIONAL(CONFIG_LIBNOSYS, test x$config_libnosys =3D xtrue) > =20 > LIB_AC_PROG_CC > AS=3D${AS-as} i'm not super happy with the CONFIG_xxx naming. newlib doesn't seem to have an existing convention for me to copy & paste. there is LIB*_MACHINE_DIR, but those correspond to specific machine/xxx/ subdirs. i guess i could use the newlib pattern and name these HAVE_xxx_DIR. -mike --vMtJNrXHLiLqLGNZ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEuQK1JxMl+JKsJRrUQWM7n+g39YEFAmIA/voACgkQQWM7n+g3 9YFCURAA1lKLKc3Vih+mIzZAWMFpSWijaYfpXDuRdnPg1tmV8qdzM9hbrrS7JUAm o8yXlyEK6NmhILUn2men0p430t55rcxCVxIazG4ZpcyuV5/eRcDgsMPaqV7aMzE9 OlSyQTeFUpm1IVJL+0IECzXQmEkGotBb9xt/bCQj/MaUHHnHTRT9Sl6inOFNVjOG f28EpXWWVrzevqzgaw1zv0omSKeLQljzShV/QWMIidFpL3yS8IMHF3Q5DkA7LuWT sWW8QhUGXV3CKmL8V0vh4MG5gJKfgSxhn9y24MU1DLuqGvyeQd3TjeXa1nItQsHz orDVetusRaKLzzTCQeMI6Bc65+Xr+pF+Es6ukNCbc/qGDvzNwIODS4Dcoby8Md9u 4MgDtFbvuTvvalnqoirSVEiqQA5CznoP8JeUJHV538os8U8YuU479T+3Q/IR+jHT 1+Qn/znh1AbVsbTyYYlG5PVoUx8hHdv5o0loZ81gZKGhHxZorCYJXzfmrnt7tiSF aKKVdy4vw4IAriE6TyE5BaF2917f9wIiQZgstW010piwKQAGVPPRCb4+6Q0IyS77 r8AZkg8W08tK7KY0D1nbzqRL2DHH75Lk6VCnrrX5LYtktXUD9ikxqrFigsUsC4K1 PARayyfCxd+pbmwmvzRcas3LPkfJgJ9KfUZxXu2sqR5u8Jxyh1w= =fsAY -----END PGP SIGNATURE----- --vMtJNrXHLiLqLGNZ--