11 lines
121 B
Text
11 lines
121 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# $Id$
|
||
|
|
||
|
set -e
|
||
|
|
||
|
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux
|
||
|
make prefix=/usr install
|
||
|
|
||
|
exit
|