mirror of
https://github.com/dirtbags/fluffy.git
synced 2025-01-09 05:20:36 -07:00
e453f6b462
- update gnu cruft
10 lines
170 B
Bash
Executable file
10 lines
170 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
[ ! -d "m4" ] && mkdir m4
|
|
|
|
autoreconf --install --force
|
|
rm -rf autom4te.cache
|
|
|
|
if [ -z "$1" ]; then
|
|
./configure --enable-maintainer-mode --enable-debug
|
|
fi
|