1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00
cde/src/cmd/INIT/ar.ibm.risc
Johnothan King fb8e239cb4 Fix build error on AIX 64-bit (#428)
This commit adds a wrapper for the AIX ar command that uses the
-X64 flag to avoid build errors on that platform.

Resolves: https://github.com/ksh93/ksh/issues/385
2022-01-17 20:25:06 +00:00

9 lines
139 B
Text
Executable file

: ar requires a non-standard option to work : 2009-10-06 :
op=$1
shift
case $op in
-*) ;;
*) op=-$op ;;
esac
/usr/bin/ar -Xany "$op" "$@"