소스 검색

Philip Rakity <prakity@yahoo.com>: I forgot to mention that the makefile in genextfs has
one error that the macosx ld program detects -- this
is the duplicate -o option

Mike Frysinger 20 년 전
부모
커밋
9a3cc345e1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      target/ext2/genext2fs.patch

+ 1 - 1
target/ext2/genext2fs.patch

@@ -12,7 +12,7 @@ diff -urN genext2fs-1.3.orig/Makefile genext2fs-1.3/Makefile
 +INSTALL=install
 +
 +genext2fs: $(OBJS)
-+	$(CC) $(CFLAGS) -o $@ $(OBJS) -o $@
++	$(CC) $(CFLAGS) -o $@ $(OBJS)
 +
 +$(OBJS): %.o : %.c
 +	$(CC) $(CFLAGS) -c $< -o $@