diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-26 07:13:08 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-26 07:13:08 +0200 |
commit | 0d0778a233a408964c85634ba4c8fbcde4706b42 (patch) | |
tree | a85b64a698509dff5ecd050a83c966659f375c9a | |
parent | bde42fc4c1bcd7183e9d70f88c22cf30e21f42d8 (diff) | |
download | ponysay-0d0778a233a408964c85634ba4c8fbcde4706b42.tar.gz ponysay-0d0778a233a408964c85634ba4c8fbcde4706b42.tar.bz2 ponysay-0d0778a233a408964c85634ba4c8fbcde4706b42.zip |
typo
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ function makeMakefile() ttyponies: mkdir -p "ttyponies" for pony in \$\$(ls --color=no "ponies/"); do \\ - if [ 1 "\$\$pony" = '.info' ]; then \\ + if [ ! "\$\$pony" = '.info' ]; then \\ echo "building ttypony: \$\$pony" ;\\ if [ "\`readlink "ponies/\$\$pony"\`" = '' ]; then \\ ponysay2ttyponysay < "ponies/\$\$pony" | tty2colourfultty -c 1 > "ttyponies/\$\$pony" ;\\ @@ -35,7 +35,7 @@ ttyponies: done mkdir -p "extrattyponies" for pony in \$\$(ls --color=no "extraponies/"); do \\ - if [ 1 "\$\$pony" = '.info' ]; then \\ + if [ ! "\$\$pony" = '.info' ]; then \\ echo "building extrattypony: \$\$pony" ;\\ if [ "\`readlink "extraponies/\$\$pony"\`" = '' ]; then \\ ponysay2ttyponysay < "extraponies/\$\$pony" | tty2colourfultty -c 1 > "extrattyponies/\$\$pony" ;\\ |