Re: [AD] 4.0.2 on the PS2 Linux |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
Joshua Walker wrote:
> here's what I got with an allegro-config -env, but any argument produces
> the same thing.
> -----
> /usr/local/bin/allegro-config: syntax error near unexpected token
> `--version=4.0.2'
> /usr/local/bin/allegro-config: /usr/local/bin/allegro-config: line 83: `
> --version=4.0.2'
> ------
Same thing happens on IRIX (shows how well I tested, *blush*). Patch
attached; it's a missing close parentheses on line 84.
Hein Zelle
>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-<
Unix is user friendly. It's just very particular about who
it's friends are.
Hein Zelle hein@xxxxxxxxxx
http://www.icce.rug.nl/~hein
>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-<
--- allegro-config Tue Jun 11 10:07:16 2002
+++ /usr/people/zelle/bin/allegro-config Tue Jun 11 10:53:50 2002
@@ -80,7 +80,7 @@
echo_exec_prefix=yes
;;
- --version=4.0.2
+ --version=4.0.2)
version=4.0.2
;;