mirror of
https://github.com/boostorg/regex.git
synced 2026-02-15 01:12:23 +00:00
15 lines
96 B
Bash
15 lines
96 B
Bash
#! /bin/sh
|
|
|
|
if test "$#" != "1"; then
|
|
exit 1
|
|
fi
|
|
|
|
cd "$1"
|
|
|
|
if eval make; then
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|
|
|