diff options
author | johans <johans@FreeBSD.org> | 2010-10-19 03:19:49 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2010-10-19 03:19:49 +0800 |
commit | 160ea84aac39c5ff5f0ecfc6db1ce138e097b2b2 (patch) | |
tree | 5bebffb4e93ca9688d3edca9aa0ae5bcb4809b73 /emulators | |
parent | a4f376e10c4cefa3c034a9bbf7fdaf73a2293aa3 (diff) | |
download | freebsd-ports-graphics-160ea84aac39c5ff5f0ecfc6db1ce138e097b2b2.tar.gz freebsd-ports-graphics-160ea84aac39c5ff5f0ecfc6db1ce138e097b2b2.tar.zst freebsd-ports-graphics-160ea84aac39c5ff5f0ecfc6db1ce138e097b2b2.zip |
Remove stray 'done' keyword from Makefile (breaks build with new sh)
PR: ports/151266
Submitted by: jilles
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xsystem35/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/emulators/xsystem35/Makefile b/emulators/xsystem35/Makefile index f6faa4afc9d..82c0c1c2086 100644 --- a/emulators/xsystem35/Makefile +++ b/emulators/xsystem35/Makefile @@ -71,9 +71,8 @@ post-extract: post-patch: ${FIND} ${WRKSRC}/src -type f |\ - ${XARGS} ${GREP} -l '<SDL/SDL' /dev/null |\ - ${XARGS} ${REINPLACE_CMD} -e 's,<SDL/,<,'; \ - done + ${XARGS} ${GREP} -l '<SDL/SDL' /dev/null |\ + ${XARGS} ${REINPLACE_CMD} -e 's,<SDL/,<,' pre-configure: (cd ${WRKSRC}/libltdl; ${AUTOCONF}) |