mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-15 15:06:42 +00:00
Add -D__BSD__ and don't write "LINUX" on a CD as default.
This commit is contained in:
parent
9170aeb809
commit
46fe71cc98
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6341
@ -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…
Reference in New Issue
Block a user