- Timestamp:
- Mar 31, 2016 2:51:42 PM (5 years ago)
- Branches:
- master
- Children:
- a493a28
- Parents:
- 169fd56
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
build.xml
r169fd56 re69f39f6 1480 1480 1481 1481 <!-- GeoIP files --> 1482 <target name="prepgeoupdate"> 1483 <copy todir="pkg-temp/geoip/" > 1484 <!-- We use a fileset here so it doesn't fail if the files don't exist. 1485 As of 0.9.26, the files are not included in Debian/Ubuntu builds. --> 1486 <fileset dir="installer/resources" includes="geoip.txt geoipv6.dat.gz" /> 1487 </copy> 1482 <target name="prepgeoupdate" depends="prepgeoupdate-unlesspkg" > 1488 1483 <copy file="installer/resources/countries.txt" todir="pkg-temp/geoip/" /> 1489 1484 <copy file="installer/resources/continents.txt" todir="pkg-temp/geoip/" /> … … 1491 1486 <copy file="installer/resources/public-suffix-list.txt" todir="pkg-temp/geoip/" /> 1492 1487 --> 1488 </target> 1489 1490 <!-- GeoIP files, set withGeoIPDatabase=true in override.properties to prevent --> 1491 <!-- As of 0.9.26, the files are not included in Debian/Ubuntu builds. --> 1492 <target name="prepgeoupdate-unlesspkg" unless="${with-geoip-database}" > 1493 <copy file="installer/resources/geoip.txt" todir="pkg-temp/geoip/" /> 1494 <copy file="installer/resources/geoipv6.dat.gz" todir="pkg-temp/geoip/" /> 1493 1495 </target> 1494 1496
Note: See TracChangeset
for help on using the changeset viewer.