diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-09-17 03:29:32 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-09-17 03:29:32 +0000 |
commit | 98c6f7749315311376108135d25b0d86a7f8320a (patch) | |
tree | 4bc65c7ad998f09238fae6c00ce5648b2bab0717 /gnu/usr.sbin/mkisofs | |
parent | 80ce7335db21e081f57b902fcb3de25b7d180c48 (diff) |
Opps, forgot about write.c on the alpha.
Diffstat (limited to 'gnu/usr.sbin/mkisofs')
-rw-r--r-- | gnu/usr.sbin/mkisofs/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.sbin/mkisofs/Makefile b/gnu/usr.sbin/mkisofs/Makefile index 9979bfbe608..427e908c743 100644 --- a/gnu/usr.sbin/mkisofs/Makefile +++ b/gnu/usr.sbin/mkisofs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1997/09/15 06:01:53 downsj Exp $ +# $OpenBSD: Makefile,v 1.2 1997/09/17 03:29:31 downsj Exp $ PROG= mkisofs MAN= mkisofs.8 @@ -8,4 +8,8 @@ SRCS= mkisofs.c tree.c write.c hash.c rock.c exclude.c multi.c \ CFLAGS+=-DSYSTEM_ID_DEFAULT=\"OpenBSD\" -I${.CURDIR} +# XXX: alpha gcc bug +write.o: write.c + ${CC} ${CFLAGS} -O0 -c $< + .include <bsd.prog.mk> |