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
1 changed files with 4 additions and 0 deletions

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::