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:
parent
3a9bac86e3
commit
9b77aa08b4
1 changed files with 4 additions and 0 deletions
|
@ -12,8 +12,12 @@ ALLHEADERS = *.h
|
||||||
|
|
||||||
BuildIncludes($(HEADERS),Xm,..)
|
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
|
XmPrivate.h: extractprototype.awk
|
||||||
awk -f extractprototype.awk $(MLIBSRC)/Xm/$(ALLHEADERS) > $@ || rm -f $@
|
awk -f extractprototype.awk $(MLIBSRC)/Xm/$(ALLHEADERS) > $@ || rm -f $@
|
||||||
|
#endif
|
||||||
|
|
||||||
depend::
|
depend::
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue