diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-05-28 01:02:32 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-05-28 01:02:32 +0000 |
commit | ca93c761559ae464189c7ea7cf11c6a6679f2431 (patch) | |
tree | 8ecad35634bef36199ac74d063053f45d720c397 /nls/iso8859-3 | |
parent | 09ebb349359e3dd9131fa2fa8b07559faa173654 (diff) | |
download | xorg-lib-libX11-ca93c761559ae464189c7ea7cf11c6a6679f2431.tar.gz |
Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383>
Diffstat (limited to 'nls/iso8859-3')
-rw-r--r-- | nls/iso8859-3/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nls/iso8859-3/Makefile.am b/nls/iso8859-3/Makefile.am index b2b1c8a8..67c9af34 100644 --- a/nls/iso8859-3/Makefile.am +++ b/nls/iso8859-3/Makefile.am @@ -7,10 +7,10 @@ x11thislocale_DATA = XLC_LOCALE Compose # XXX: WCHAR32 definition <<-- WTF does this mean? XLC_LOCALE: XLC_LOCALE.pre - $(CPP) -traditional -DWCHAR32=1 -DXCOMM='#' - < $< > $@ + $(CPP) -traditional -DWCHAR32=1 -DXCOMM='#' - < XLC_LOCALE.pre > $@ Compose: Compose.pre - $(CPP) -traditional -DXCOMM='#' - < $< > $@ + $(CPP) -traditional -DXCOMM='#' - < Compose.pre > $@ Compose.pre: touch Compose.pre |