13 lines
163 B
Bash
Executable File
13 lines
163 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
for autojunk in aclocal.m4 Makefile.am Makefile.in
|
|
do
|
|
touch $autojunk
|
|
done
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|