10 lines
181 B
Bash
10 lines
181 B
Bash
#!/bin/sh
|
|
#
|
|
# configure script for ${WRKSRC}. It just decends into the
|
|
# freebsd subdirectory and execs configure.
|
|
#
|
|
cd common
|
|
./configure $@
|
|
cd ../sdr/freebsd
|
|
exec ./configure $@
|