diff options
author | 1996-09-27 15:46:32 +0000 | |
---|---|---|
committer | 1996-09-27 15:46:32 +0000 | |
commit | a2e156ffb905cd62b32adc84c9bbc43dffb8a179 (patch) | |
tree | 85c844bb611ffeaba1ece3f0ac1baa31a86fbb8b | |
parent | Now can both MD4 and MD5 skey's. (diff) | |
download | wireguard-openbsd-a2e156ffb905cd62b32adc84c9bbc43dffb8a179.tar.xz wireguard-openbsd-a2e156ffb905cd62b32adc84c9bbc43dffb8a179.zip |
Do not count on x perms being there for rmaouthdr
-rw-r--r-- | sys/arch/i386/stand/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/Makefile b/sys/arch/i386/stand/Makefile index e18f59cbe94..4d9b2f9e059 100644 --- a/sys/arch/i386/stand/Makefile +++ b/sys/arch/i386/stand/Makefile @@ -3,7 +3,8 @@ S = ${.CURDIR}/../../.. I386 = ${.CURDIR}/.. -RMHDR = ${.CURDIR}/../boot/rmaouthdr +CSH = csh +RMHDR = ${CSH} ${.CURDIR}/../boot/rmaouthdr STAND= /sys/stand INCPATH=-I${.CURDIR} -I${S} -I${S}/arch -I${S}/ufs -I${S} -I${STAND} VPATH= ${STAND} @@ -11,7 +12,8 @@ STANDDIR= ${DESTDIR}/usr/mdec AFLAGS+= -v -Wa,-a -D_LOCORE CFLAGS+= -m386 -O6 -D_STANDALONE -DAT386 -O ${INCPATH} -CPPFLAGS+= ${INCPATH} -D_KERNEL -DRELOC=0x${RELOC} +#CPPFLAGS+= ${INCPATH} -D_KERNEL -DRELOC=0x${RELOC} +CPPFLAGS+= ${INCPATH} -DRELOC=0x${RELOC} LDADD+= ${LIBC} RELOC= 98000 |