mirror of
https://github.com/boostorg/regex.git
synced 2026-01-31 02:30:14 +01: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
|
|
|