mirror of
git://projects.qi-hardware.com/iris.git
synced 2024-12-29 02:59:53 +02:00
8 lines
177 B
Bash
Executable File
8 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
autoreconf --force --install --symlink
|
|
if [ $# -eq 0 ] ; then
|
|
./configure --host mipsel-linux-gnu --enable-udc-boot
|
|
else
|
|
./configure --host mipsel-linux-gnu "$@"
|
|
fi
|