diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-03-24 19:22:33 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-03-24 19:22:33 +0000 |
commit | d8274511cad2028f46481e0012136bd30c28e19e (patch) | |
tree | e5568b620cb8eaea6133557874b5674216194b1a | |
parent | 09237e9da43c219fc5addb52a9be4f9384a143c0 (diff) | |
download | src-d8274511cad2028f46481e0012136bd30c28e19e.tar.gz src-d8274511cad2028f46481e0012136bd30c28e19e.zip |
If mus script not executable, fix.
Notes
Notes:
svn path=/head/; revision=7334
-rw-r--r-- | gnu/usr.bin/perl/usub/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/usub/Makefile b/gnu/usr.bin/perl/usub/Makefile index 6c49bd32ac96..c0006bfdfa70 100644 --- a/gnu/usr.bin/perl/usub/Makefile +++ b/gnu/usr.bin/perl/usub/Makefile @@ -15,6 +15,7 @@ VPATH+= ${.CURDIR}/../perl NOMAN= yes curses.c: curses.mus + @if [ ! -x ${.CURDIR}/mus ]; then chmod +x ${.CURDIR}/mus; fi ${.CURDIR}/mus ${.CURDIR}/curses.mus > curses.c .include "../../Makefile.inc" |