Magellan Linux

Diff of /trunk/extras/kross-interpreters/kross-interpreters-4.9.4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 14639 by niro, Tue Jan 1 22:38:53 2013 UTC revision 14640 by niro, Tue Jan 1 22:43:31 2013 UTC
# Line 89  src_compile() Line 89  src_compile()
89  {  {
90   cd ${SRCDIR}   cd ${SRCDIR}
91    
92     local java_build
93     if ! lang_enabled java
94     then
95     java_build="_not"
96     fi
97    
98     local python_build
99     if ! lang_enabled python
100     then
101     python_build="_not"
102     fi
103     local ruby_build
104     if ! lang_enabled ruby
105     then
106     ruby_build="_not"
107     fi
108    
109   kde4_configure \   kde4_configure \
110   $(lang_enabled java && cmake_build java) \   $(cmake_build${java_build} java) \
111   $(lang_enabled python && cmake_build python) \   $(cmake_build${python_build} python) \
112   $(lang_enabled ruby && cmake_build ruby) \   $(cmake_build${ruby_build} ruby) \
113   || die   || die
114    
115   mmake || die   mmake || die

Legend:
Removed from v.14639  
changed lines
  Added in v.14640