mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
11 lines
114 B
Bash
Executable File
11 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -n "$1"; then
|
|
mkdir -p "$1"
|
|
O="$1/"
|
|
fi
|
|
O="${O}configure"
|
|
|
|
aclocal -Im4
|
|
exec autoconf -o $O
|