mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
e891dad7f2
The app-defaults file for xcb was not built correctly as a consequence of the switch to clang and replacement of gcc's cpp to tradcpp which is more strict about the order of the parameters. The filename must be last on the command line otherwise a zero-length file is created. Fixed by moving the filename parameter to the end of the cpp command PR: 188203 Submitted by: callum (omma.gibson.athome)
11 lines
317 B
Plaintext
11 lines
317 B
Plaintext
--- Imakefile.orig 2002-11-25 15:28:17.000000000 +0000
|
|
+++ Imakefile
|
|
@@ -20,6 +20,6 @@ OBJS = xcb.o
|
|
ComplexProgramTarget(xcb)
|
|
|
|
Xcb.ad: Xcb.ad.base
|
|
- $(CPP) -P Xcb.ad.base $(GUI) > $@ # -P removes line directives.
|
|
+ $(CPP) $(GUI) -P Xcb.ad.base > $@ # -P removes line directives.
|
|
|
|
InstallAppDefaults(Xcb)
|