diff options
author | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-08-18 21:26:25 +0300 |
---|---|---|
committer | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-08-18 21:26:25 +0300 |
commit | c6ee26ab4532aae678d76b125f667653473d6fb7 (patch) | |
tree | 99e88e3683f1f5e9dec34377ed608ef380f16741 /netware/BUILD/nwbootstrap | |
parent | acaad2c70bb8fc7f434c848fbf75bb9bae28399d (diff) | |
download | mariadb-git-c6ee26ab4532aae678d76b125f667653473d6fb7.tar.gz |
Some minor fixes for Netware. These were required after we started building
against a later version of libc.
Diffstat (limited to 'netware/BUILD/nwbootstrap')
-rwxr-xr-x | netware/BUILD/nwbootstrap | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/netware/BUILD/nwbootstrap b/netware/BUILD/nwbootstrap index 2ba90e32fa7..a420aa8b64c 100755 --- a/netware/BUILD/nwbootstrap +++ b/netware/BUILD/nwbootstrap @@ -171,15 +171,9 @@ do rm $file.org done -# create the libmysql.imp file in netware folder from libmysql/libmysql.def -# file -echo "generating llibmysql.imp file..." -awk 'BEGIN{x=0;} x==1 {print $1;next} /EXPORTS/{x=1}' libmysql/libmysql.def > netware/libmysql.imp - # create the libmysql.imp file in netware folder from libmysql/libmysql.def file echo "generating llibmysql.imp file..." -awk 'BEGIN{x=0;} x==1 {print $1;next} /EXPORTS/{x=1}' libmysql/libmysql.def > netware/libmysql.imp - +awk 'BEGIN{x=0;} END{printf("\n");} x==1 {printf(" %s",$1); x++; next} x>1 {printf(",\n %s", $1);next} /EXPORTS/{x=1}' libmysql/libmysql.def > netware/libmysql.imp # build linux tools echo "compiling linux tools..." |