ports/x11/cde-devel/files/patch-lib_DtMmdb_StyleSheet_Makefile.am
Cy Schubert dc9eb66aca x11/cde-devel: Introduce x11/cde-devel
The x11/cde-devel port will track the CDE master development branch.
The cdesktopenv-code git repo on sourceforge is mirrored using my github
account and FreeBSD ports plumbing is used to fetch tarballs from github.

This port uses the x11/cde-25 port/pkg coexistence methodology to allow
it to be installed while a more stable version of x11/cde* is installed,
allowing users to safely use the port with a quick fallback should the
upstream software significanly break.

Users should ensure that their ~/.dt is backed up prior to switching
from a stable version of x11/cde* to x11/cde-devel or back again.
2022-08-05 20:38:58 -07:00

19 lines
620 B
Text

--- lib/DtMmdb/StyleSheet/Makefile.am.orig 2022-02-15 09:36:38.828203000 -0800
+++ lib/DtMmdb/StyleSheet/Makefile.am 2022-02-15 10:20:50.149152000 -0800
@@ -41,14 +41,14 @@
tokenStyle.C
defParser.C: defParser.yy
- $(YACC) $(AM_YFLAGS) -p defParser -b defParser $<
+ $(YACC) $(AM_YFLAGS) -o defParser.tab.c -p defParser -b defParser $<
mv defParser.tab.c $@
defToken.C: defToken.ll
$(LEX) $(AM_LFLAGS) -P defParser -o $@ $<
style.C: style.yy
- $(YACC) $(AM_YFLAGS) -p style -b style $<
+ $(YACC) $(AM_YFLAGS) -o style.tab.c -p style -b style $<
mv style.tab.c style.C
tokenStyle.C: tokenStyle.ll