diff options
author | Timothy Redaelli <timothy@redaelli.eu> | 2011-03-31 15:27:38 +0200 |
---|---|---|
committer | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2011-03-31 15:39:26 -0400 |
commit | 921e29bb603df36cdc0cb564a506e29778a73ce3 (patch) | |
tree | 25c84a7c72a2efb4ec8eb68fc7bd4a9530c9e370 /nice | |
parent | d06e5fd17f6fae33fe015180cde6001c670f19ce (diff) | |
download | libnice-921e29bb603df36cdc0cb564a506e29778a73ce3.tar.gz |
Use only POSIX statements in Makefile.am
Diffstat (limited to 'nice')
-rw-r--r-- | nice/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nice/Makefile.am b/nice/Makefile.am index d016b96..ce7f316 100644 --- a/nice/Makefile.am +++ b/nice/Makefile.am @@ -37,9 +37,9 @@ AM_CFLAGS = \ test-symbols.sh:: chmod +x $(srcdir)/$@ -libnice.symbols: libnice.sym Makefile +libnice.symbols: libnice.sym rm -f $@ - while read s; do echo "T $$s"; done < $< > $@ + while read s; do echo "T $$s"; done < $? > $@ CLEANFILES += libnice.symbols |