X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=free%2Flibs%2Fexamples%2Finternal%2Fconfigure;h=1e93b7eabdff0c36ef762516df2b983c07c028ff;hb=6653d0a752dd937152fa66f1725fab42edc25b8a;hp=e4b5f1003536d9cffe4987b242b2727162ee0030;hpb=b6b5b41d2b207088659f74b38dbcdc070f55f514;p=libucw.git diff --git a/free/libs/examples/internal/configure b/free/libs/examples/internal/configure index e4b5f100..1e93b7ea 100755 --- a/free/libs/examples/internal/configure +++ b/free/libs/examples/internal/configure @@ -7,7 +7,7 @@ use strict; our $srcdir; BEGIN { - my $pkgfile = "lib/wildmatch.c"; + my $pkgfile = "ucw/wildmatch.c"; if (!defined ($srcdir = $ENV{"SRCDIR"})) { if (-f $pkgfile) { $srcdir="."; @@ -17,15 +17,15 @@ BEGIN { die "Don't know how to find myself. Please set SRCDIR manually."; } } - require "$srcdir/lib/perl/Configure.pm"; + require "$srcdir/ucw/perl/Configure.pm"; UCW::Configure::import UCW::Configure; } Init($srcdir, "default.cfg"); -Include "lib/default.cfg"; +Include "ucw/default.cfg"; Log "### Configuring TestApp ###\n\n"; Include Get("CONFIG"); -Include "lib/autoconf.cfg"; +Include "ucw/autoconf.cfg"; Finish(); Log "\nConfigured, run `make' to build everything.\n";