Add -D__BSD__ and don't write "LINUX" on a CD as default.
This commit is contained in:
parent
9170aeb809
commit
46fe71cc98
@ -1,5 +1,6 @@
|
||||
PROG= mkisofs
|
||||
MAN8= mkisofs.8
|
||||
SRCS= mkisofs.c tree.c write.c hash.c rock.c exclude.c
|
||||
CFLAGS+= -D__BSD__
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -11,8 +11,12 @@
|
||||
#define ABSTRACT_DEFAULT NULL
|
||||
#define VOLSET_ID_DEFAULT NULL
|
||||
#define VOLUME_ID_DEFAULT "CDROM"
|
||||
#ifdef __FreeBSD__
|
||||
#define SYSTEM_ID_DEFAULT "FreeBSD"
|
||||
#else
|
||||
#ifdef __QNX__
|
||||
#define SYSTEM_ID_DEFAULT "QNX"
|
||||
#else
|
||||
#define SYSTEM_ID_DEFAULT "LINUX"
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user