diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-05-28 15:11:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-05-28 15:11:03 +0000 |
commit | 00d3f389de604bc32e8f43b418dcfd3b97a55939 (patch) | |
tree | e2b28e02f087dc3e6fa92076aecc2c126b1e03cb | |
parent | 0a53b9bc2dd5104758b42a9b6682b45da22300fe (diff) | |
download | control-center-00d3f389de604bc32e8f43b418dcfd3b97a55939.tar control-center-00d3f389de604bc32e8f43b418dcfd3b97a55939.tar.gz control-center-00d3f389de604bc32e8f43b418dcfd3b97a55939.tar.bz2 control-center-00d3f389de604bc32e8f43b418dcfd3b97a55939.tar.xz control-center-00d3f389de604bc32e8f43b418dcfd3b97a55939.zip |
fix build with mcc non installed
-rwxr-xr-x | generate-conf-file.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generate-conf-file.pl b/generate-conf-file.pl index 97527992..879f5cbc 100755 --- a/generate-conf-file.pl +++ b/generate-conf-file.pl @@ -17,6 +17,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. use MDK::Common; +use lib qw(./lib); use MDV::Control_Center; output('mcc.conf', map { s/ /_/g; "ENABLE_$_=yes\n" } sort keys %programs); |