On Fri, Feb 05, 2010 at 10:24:39AM +0100, Peter Kjellerstedt wrote: >> -----Original Message----- >> From: [email protected] [mailto:uclibc-cvs- >> [email protected]] On Behalf Of Bernhard Reutner-Fischer >> Sent: den 23 januari 2010 22:37 >> To: [email protected] >> Subject: [git commit master] ftw.h installation: fix inverted logic >> >> commit: >> http://git.uclibc.org/uClibc/commit/?id=d75f980f379dfbbe70ae8fb0956693a95af2fca2 >> branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master >> >> Signed-off-by: Bernhard Reutner-Fischer <[email protected]> >> --- >> Makefile.in | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/Makefile.in b/Makefile.in >> index 39dd18c..879b730 100644 >> --- a/Makefile.in >> +++ b/Makefile.in >> @@ -262,7 +262,7 @@ HEADERS_RM-$(UCLIBC_HAS_BSD_ERR) += >> err.h >> HEADERS_RM-$(UCLIBC_HAS_CRYPT) += crypt.h >> HEADERS_RM-$(UCLIBC_HAS_EPOLL) += sys/epoll.h >> HEADERS_RM-$(UCLIBC_HAS_FENV) += fenv.h bits/fenv.h >> bits/fenvinline.h >> -HEADERS_RM-$(findstring y,$(UCLIBC_HAS_FTW)$(UCLIBC_HAS_NFTW)) += ftw.h >> +HEADERS_RM-$(if $(findstring y,$(UCLIBC_HAS_FTW)$(UCLIBC_HAS_NFTW)),,y) += >> ftw.h > >I may of course be reading the test above incorrectly, but as >far as I can deduct, the above code will prevent ftw.h from >being installed if $(UCLIBC_HAS_FTW) and/or $(UCLIBC_HAS_NFTW) >is y. This seems wrong. I would have assumed the following to >be what you want: > >HEADERS_RM-$(UCLIBC_HAS_FTW)$(UCLIBC_HAS_NFTW) += ftw.h
you're right, i'll remember to drop the findstrings next time. Thanks! _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
