From: Martin Mares Date: Sun, 9 Nov 2008 20:56:11 +0000 (+0100) Subject: Build example: Word polishing. X-Git-Tag: holmes-import~171 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=d779d07989bb0188c7d03d0dec4714d087e2fe8c;p=libucw.git Build example: Word polishing. --- diff --git a/free/libs/examples/external-ucw-build/Makefile b/free/libs/examples/external-ucw-build/Makefile index db3a8c7c..5715c257 100644 --- a/free/libs/examples/external-ucw-build/Makefile +++ b/free/libs/examples/external-ucw-build/Makefile @@ -12,7 +12,7 @@ obj/config.mk: @echo "You need to run configure first." && false # Do not show strange errors if the BUILDSYS is not set -# (means noone yet called configure and it reported above) +# (it happens if noone called configure as reported above) ifdef BUILDSYS # We will use the libucw build system diff --git a/free/libs/examples/external-ucw-build/configure b/free/libs/examples/external-ucw-build/configure index f87fcc73..60989a65 100755 --- a/free/libs/examples/external-ucw-build/configure +++ b/free/libs/examples/external-ucw-build/configure @@ -1,8 +1,6 @@ #!/usr/bin/perl -# Configure script for the libucw example +# Configure script for the libucw example (inspired by ../external/configure) # (c) 2008 Michal Vaner -# A lot copyed from ../external/configure -# (c) 2007 Martin Mares use warnings; use strict; @@ -23,7 +21,7 @@ BEGIN { # Ask pkg-config for the rest of configure $libdir=`pkg-config libucw --variable=perl_modules_dir`; chomp $libdir; - die "libUCW not found. Is PKG_CONFIG_PATH set properly?" if $? || not defined $libdir; + die "Package `libucw' not found. Is PKG_CONFIG_PATH set properly?" if $? || not defined $libdir; } use lib $libdir; use UCW::Configure;