Skip to content
Snippets Groups Projects
Commit e09b0ac8 authored by rtoy's avatar rtoy
Browse files

Remove the sunos-map-file when linker.sh exits.

parent f2789169
No related branches found
No related tags found
No related merge requests found
#!/bin/sh -x #!/bin/sh -x
# $Id: linker.sh,v 1.5 2007/07/24 19:09:16 rtoy Exp $ # $Id: linker.sh,v 1.6 2007/07/25 16:33:16 rtoy Exp $
# This file was written by Fred Gilham and is placed in the public domain. # This file was written by Fred Gilham and is placed in the public domain.
# It comes without warranty of any kind. # It comes without warranty of any kind.
...@@ -89,6 +89,8 @@ case "$OPSYS" in ...@@ -89,6 +89,8 @@ case "$OPSYS" in
IFADDR= IFADDR=
sed -e "s;@BIFLAG@;$BIFLAG;" -e "s;@IFADDR@;$1;" $SCRIPT > sunos-map-file sed -e "s;@BIFLAG@;$BIFLAG;" -e "s;@IFADDR@;$1;" $SCRIPT > sunos-map-file
SCRIPT="-M sunos-map-file" SCRIPT="-M sunos-map-file"
# Remove the sunos-map-file when the script exits.
trap 'rm -f sunos-map-file' 0
FLAGS= FLAGS=
BIFLAG= BIFLAG=
;; ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment