environment variables and Configure variables was used,
which lead, among other bad things, into $ccflags being your
uname -a output, which lead into test compile with cc failing,
which lead into gcc being selected, which didn't work that well
since gcc (ancient 2.8.1 in that particular box) wasn't too happy
with large files, et cetera.
p4raw-id: //depot/perl@9850
### HP-UX OS specific behaviour
-set `echo " $ccflags " | sed -e 's/ -A[ea] / /' -e 's/ -D_HPUX_SOURCE / /'`
-cc_cppflags="$* -D_HPUX_SOURCE"
+case "$ccflags" in
+'') cc_cppflags='' ;;
+*) set `echo " $ccflags " | sed -e 's/ -A[ea] / /g' -e 's/ -D_HPUX_SOURCE / /'`
+ cc_cppflags="$* -D_HPUX_SOURCE"
+ ;;
+esac
ccflags="-Ae $cc_cppflags"
cppflags="-Aa -D__STDC_EXT__ $cc_cppflags"