blob: 3da705cdbf4028425f0780eba1598c6f0bfc3f9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
# gcc wrapper for building dynamic lib version of perl
# if -buildperl found on command line, then all args passed to
# perlgcc, else pass all args to gcc.
# jc 3/24/97
#
case "$*" in
*-buildperl*) miniperl perlgcc "$@" ;;
*) gcc "$@" ;;
esac
|