diff options
author | marino <marino> | 2012-05-21 08:03:15 +0000 |
---|---|---|
committer | marino <marino> | 2012-05-21 08:03:15 +0000 |
commit | 047b044fcbb9e9d65a9b535b459c91b18b8404fa (patch) | |
tree | abb4ec5e65dddd84ebcd007613b6ac0b47dc1cf1 | |
parent | b8d7ac3333fc3ffd9d3052cc864787c30c7ca041 (diff) | |
download | pkgsrc-047b044fcbb9e9d65a9b535b459c91b18b8404fa.tar.gz |
textproc/FlightCrew: Fix bad patch application
The FlightCrew files all use DOS line endings.
The patches all use unix line endings.
All source files have to have the line endings converted before applying
a patch to them. The last patch added 2012-01-16 to fix build with Boost
wasn't applied to a converted source file and thus the package failed in
the patch phase.
-rw-r--r-- | textproc/FlightCrew/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/FlightCrew/Makefile b/textproc/FlightCrew/Makefile index 29366e38602..ca06f8cf25b 100644 --- a/textproc/FlightCrew/Makefile +++ b/textproc/FlightCrew/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2012/03/03 00:14:00 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2012/05/21 08:03:15 marino Exp $ # DISTNAME= FlightCrew-0.7.2-Code @@ -36,6 +36,7 @@ SUBST_STAGE.d2u= post-extract SUBST_MESSAGE.d2u= Removing CR end-of-line markers. SUBST_FILES.d2u= CMakeLists.txt SUBST_FILES.d2u+= src/FlightCrew/tests/CMakeLists.txt +SUBST_FILES.d2u+= src/FlightCrew/Validators/Opf/ReachabilityAnalysis.cpp SUBST_FILTER_CMD.d2u= ${TR} -d '\r' .include "../../mk/compiler.mk" |