]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/perl/UCW/Configure/Paths.pm
Merge branch 'dev-free' into dev-lib
[libucw.git] / ucw / perl / UCW / Configure / Paths.pm
index 385987ca7dc938886730bb403e909feb40401c8d..ecfa2caa3c19d466ad6ed22dabd740eb213278c6 100644 (file)
@@ -1,12 +1,14 @@
-# Automatic configuration, installation paths part
-# (c) 2008 Michal Vaner <vorner@ucw.cz>
-# Code taken from autoconf.cfg by:
+# UCW Library configuration system: installation paths
 # (c) 2005--2008 Martin Mares <mj@ucw.cz>
 # (c) 2006 Robert Spalek <robert@ucw.cz>
+# (c) 2008 Michal Vaner <vorner@ucw.cz>
 
 package UCW::Configure::Paths;
 use UCW::Configure;
 
+use strict;
+use warnings;
+
 Log "Determining installation prefix ... ";
 if (IsSet("CONFIG_LOCAL")) {
        Log("local build\n");
@@ -40,6 +42,6 @@ Set("INSTALL_RUN_DIR", '$(INSTALL_VAR_PREFIX)run');
 # Remember PKG_CONFIG_PATH used for building, so that it will be propagated to
 # pkg-config's run locally in the makefiles.
 Set("PKG_CONFIG_PATH", $ENV{"PKG_CONFIG_PATH"}) if defined $ENV{"PKG_CONFIG_PATH"};
-# We succeeded
 
+# We succeeded
 1;