mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
that you create one of the object directories make knows (see make(1)). This uses the -C flag, so add a test that checks that make actually accepts -C. Also fix the test that selects csh via the .SHELL target to work for tcsh users too. This commit renames shell_test to shell_test.sh. There is no history to preserve so go without a repo-copy. Reviewed by: ru
6 lines
60 B
Bash
6 lines
60 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
echo $@
|
|
if ! test -t 0 ; then
|
|
cat
|
|
fi
|