diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2004-11-27 18:27:05 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2004-11-27 18:27:05 +0000 |
commit | e26facf9f9ca39e532013b2dc8549e706c7bb4ea (patch) | |
tree | 40328d8f7e3f79fd028662521db9132c6245e36e | |
parent | b2efdd909dfd7bce0e5879e64c5dea22cbc52489 (diff) |
Fix for building in another directory using config -s. ok deraadt@, miod@.
-rw-r--r-- | sys/arch/sgi/conf/Makefile.sgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sgi/conf/Makefile.sgi b/sys/arch/sgi/conf/Makefile.sgi index d657843e33b..3dfdd95e4fb 100644 --- a/sys/arch/sgi/conf/Makefile.sgi +++ b/sys/arch/sgi/conf/Makefile.sgi @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sgi,v 1.10 2004/11/16 20:42:02 kettenis Exp $ +# $OpenBSD: Makefile.sgi,v 1.11 2004/11/27 18:27:04 matthieu Exp $ # Makefile for OpenBSD # @@ -102,9 +102,9 @@ SYSTEM_LD= -@if [ X${DEBUG} = X-g ]; \ then strip=-X; \ else strip=-x; \ fi; \ - echo ${LD} $$strip -o $@ -e start -T ../../conf/ld.script \ + echo ${LD} $$strip -o $@ -e start -T ${SGI}/conf/ld.script \ -Ttext=${LINK_ADDRESS} '$${SYSTEM_OBJ}' vers.o; \ - ${LD} $$strip -o $@ -e start -T ../../conf/ld.script \ + ${LD} $$strip -o $@ -e start -T ${SGI}/conf/ld.script \ -Ttext=${LINK_ADDRESS} ${SYSTEM_OBJ} vers.o # SYSTEM_LD_TAIL= chmod 755 $@; \ |