1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

Xm/Imakefile: never try to regen XmPrivate.h on linux systems. It will always fail.

This commit is contained in:
Jon Trulson 2012-09-18 10:14:33 -06:00
parent 3a9bac86e3
commit 9b77aa08b4

View file

@ -12,8 +12,12 @@ ALLHEADERS = *.h
BuildIncludes($(HEADERS),Xm,..)
XCOMM We do not build with Motif sources on Linux, so this will never
XCOMM do the right thing on that platform. Just leave XmPrivate.h as-is.
#if !defined(LinuxArchitecture)
XmPrivate.h: extractprototype.awk
awk -f extractprototype.awk $(MLIBSRC)/Xm/$(ALLHEADERS) > $@ || rm -f $@
#endif
depend::