github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/clients/android/check-environment.pl (about) 1 #!/usr/bin/perl 2 3 use strict; 4 use FindBin qw($Bin); 5 6 my $props = "$Bin/local.properties"; 7 unless (-e $props) { 8 die "\n". 9 "**************************************************************\n". 10 "Can't build the Camlistore Android client; SDK not configured.\n". 11 "You need to create your $props file.\n". 12 "See local.properties.TEMPLATE for instructions.\n". 13 "**************************************************************\n\n"; 14 }