diff options
author | hans-christoph <hans-christoph@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-07-15 09:44:44 +0000 |
---|---|---|
committer | hans-christoph <hans-christoph@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-07-15 09:44:44 +0000 |
commit | 8a22a88027680006a621c7b5f03e5ddd3dd0cac7 (patch) | |
tree | a356d73593c1e80b29e301211604d58fe8263773 /Compose | |
parent | bfaac541698db646960f758a50815bcf1de4f4cb (diff) |
fix für #150: erzeuge.installiere_neo geht nicht mehr seit r1928
git-svn-id: https://svn.neo-layout.org@1930 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'Compose')
-rw-r--r-- | Compose/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Compose/Makefile b/Compose/Makefile index 2fe7a00..364964f 100644 --- a/Compose/Makefile +++ b/Compose/Makefile @@ -9,7 +9,8 @@ DEFAULTS = \ base_greek_lang \ base_roman -MODULES = $(notdir $(basename $(wildcard $(SRC)/*.module))) +MODULES_SRC = $(wildcard $(SRC)/*.module)) +MODULES = $(notdir $(basename $(MODULES_SRC))) CHECKCOMPOSE = ./check-compose.pl @@ -38,6 +39,9 @@ XCompose%: FORCE fi \ done +XCompose : XCompose_base + cp $< $@ + check : @for i in XCompose*; do \ $(CHECKCOMPOSE) -q $$i || (\ |