blob: 894f81f01b52820b6e40b8aba4155b71c1842de9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- ede-2.0-beta.orig/build/Program.jam 2009-10-08 10:44:35.000000000 -0300
+++ ede-2.0-beta/build/Program.jam 2009-10-11 09:31:50.000000000 -0300
@@ -76,8 +76,8 @@
# and FLTKLIB. If [noinstall] is given, [target] will not be installed wit 'jam install'.
rule EdeProgram
{
- if ! $(EDELIBINCLUDE) || ! $(EDELIBLIB) {
- Echo "EDELIBINCLUDE or EDELIBLIB not defined; $(1) will not be built" ;
+ if ! $(EDELIBLIB) {
+ Echo "EDELIBLIB not defined; $(1) will not be built" ;
return ;
}
@@ -95,8 +95,8 @@
# and FLTKLIB. If [noinstall] is given, [target] will not be installed wit 'jam install'.
rule EdeProgramAsFltkBare
{
- if ! $(EDELIBINCLUDE) || ! $(EDELIBLIB) {
- Echo "EDELIBINCLUDE or EDELIBLIB not defined; $(1) will not be built" ;
+ if ! $(EDELIBLIB) {
+ Echo "EDELIBLIB not defined; $(1) will not be built" ;
return ;
}
|