blob: 53a33b833f7d98b7aeae3e77654ca82912e75409 (
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
25
26
27
28
29
30
31
|
Fixed libtool mismatch issues.
Gentoo bug: 344605
*** PEAR/Builder.php.old Mon Nov 8 16:22:52 2010
--- PEAR/Builder.php Mon Nov 8 16:20:22 2010
***************
*** 326,331 ****
--- 326,336 ----
}
// }}} end of interactive part
+ if (file_exists('aclocal.m4')) {
+ $this->_runCommand('rm aclocal.m4');
+ $this->_runCommand('autoreconf');
+ }
+
// FIXME make configurable
if(!$user=getenv('USER')){
$user='defaultuser';
***************
*** 471,474 ****
}
return PEAR_Common::log($level, $msg);
}
! }
\ No newline at end of file
--- 476,479 ----
}
return PEAR_Common::log($level, $msg);
}
! }
|