freebsd-ports/devel/bisoncpp/files/patch-icmake-library
Gabor Pali 9205cdd2b3 The program bisonc++ creates a C++ parser function and -class having a
cleaner setup than the code generated by Alain Coetmeur's bison++.
Furthermore, since bisonc++ more closely follows current-day ideas about
C++ programming its code is easier to read.

WWW: http://bisoncpp.sourceforge.net/

Approved by:	tabthorpe
2009-03-09 16:23:46 +00:00

21 lines
478 B
Text

--- icmake/library.orig 2007-11-13 14:48:17.000000000 +0100
+++ icmake/library 2009-03-06 10:26:55.000000000 +0100
@@ -120,6 +120,7 @@
int idx;
string compiler;
string file;
+ string objDir; /* for 8-CURRENT */
compiler = COMPILER;
@@ -128,8 +129,9 @@
#endif
compiler += " -c -o " + srcDir + "/o/" + (string)prefix;
+ objDir = srcDir + "/o";
- md(srcDir + "/o");
+ md(objDir);
for (idx = sizeof(cfiles); idx--; )
{