diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-11-03 14:52:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-11-03 14:52:58 +0100 |
commit | 5d9a23ccec9fc3733786d64b83d768719951b89f (patch) | |
tree | 5c488c47da6c3e9ed67ef70fc97cb59104be3be7 | |
parent | a72a7dc500ffd57662e8b9be61e4676266861c33 (diff) |
Missing conditionalizaton.
-rw-r--r-- | postprocess/packcomponents/makefile.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/postprocess/packcomponents/makefile.mk b/postprocess/packcomponents/makefile.mk index e40327e9d846..2de3f99fe507 100644 --- a/postprocess/packcomponents/makefile.mk +++ b/postprocess/packcomponents/makefile.mk @@ -383,6 +383,7 @@ $(MISC)/services.input : makefile.mk '<list>$(my_components:^"<filename>":+".component</filename>")</list>' \ > $@ +.IF "$(ENABLE_SCRIPTING_BEANSHELL)" == "YES" $(MISC)/scriptproviderforbeanshell.rdb .ERRREMOVE : \ $(SOLARENV)/bin/packcomponents.xslt \ $(MISC)/scriptproviderforbeanshell.input \ @@ -395,7 +396,9 @@ $(MISC)/scriptproviderforbeanshell.input : makefile.mk echo \ '<list><filename>component/scripting/java/ScriptProviderForBeanShell.component</filename></list>' \ > $@ +.END +.IF "$(ENABLE_SCRIPTING_JAVASCRIPT)" == "YES" $(MISC)/scriptproviderforjavascript.rdb .ERRREMOVE : \ $(SOLARENV)/bin/packcomponents.xslt \ $(MISC)/scriptproviderforjavascript.input \ @@ -408,3 +411,4 @@ $(MISC)/scriptproviderforjavascript.input : makefile.mk echo \ '<list><filename>component/scripting/java/ScriptProviderForJavaScript.component</filename></list>' \ > $@ +.END |