diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-02-19 15:40:35 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2008-02-19 15:40:35 +0100 |
commit | 5e21e0619c0cac4d0634b3831f8e4054c551061d (patch) | |
tree | a1938b085956f4212a49cdb63ff6415cea015fab | |
parent | 1b97fc0982b1e72adb1b224606c0c14781109995 (diff) |
typo fix in automake version detection
thanks Sebastian (schwarz.s at gmx.de) for pointing this out
-rw-r--r-- | skype/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skype/Makefile b/skype/Makefile index 192e3d5b..d71fbe2a 100644 --- a/skype/Makefile +++ b/skype/Makefile @@ -2,7 +2,7 @@ VERSION = 0.3.1 -AMVERSION = $(shell automake --version|sed 's/.*) //;s/\([0-9]\+\.[0-9]\+\)\.[0-9]\+/\1/;q') +AMVERSION = $(shell automake --version|sed 's/.* //;s/\([0-9]\+\.[0-9]\+\)\.[0-9]\+/\1/;q') skype.so: skype.c config.mak $(CC) $(CFLAGS) -shared -o skype.so skype.c $(LDFLAGS) |