mirror of https://github.com/nodejs/node.git
9 lines
122 B
Plaintext
9 lines
122 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# NOTE: Just a wrapper around normal fipsld
|
||
|
FIPSLD=$1
|
||
|
shift
|
||
|
|
||
|
DIR=`dirname $0`
|
||
|
FIPSLD_CC=$DIR/fipscc $FIPSLD $@
|