Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2012-05-17 14:10:41 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2012-05-17 14:11:08 +0400
commitbabcb1954a89ade15a3c1407344121beb5310907 (patch)
tree93ed99dafb4b9ef9930a0613307a39528db094ae /Makefile
parent2e16af618f5281742ce6ecccbce239bfb9f9654b (diff)
[Build] Use the correct flag for test
-a is a boolean AND operator. -e checks if the file exists.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 48ecda2c39..7bf5e6deef 100644
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,7 @@ remove-stale-tarballs:
dist: remove-stale-tarballs dist-recursive
mkdir -p tarballs
for t in $(SUBDIRS); do \
- if test -a $$t/*.tar.gz; then \
+ if test -e $$t/*.tar.gz; then \
mv -f $$t/*.tar.gz tarballs ;\
fi \
done