mirror of
https://github.com/boostorg/regex.git
synced 2025-07-16 05:42:15 +02: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
|
|
|