1
0
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:
Poul-Henning Kamp 1995-02-13 06:54:47 +00:00
parent 9170aeb809
commit 46fe71cc98
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6341
2 changed files with 5 additions and 0 deletions

View File

@ -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>

View File

@ -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