diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-04-05 23:08:56 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-04-05 23:08:56 +0200 |
commit | 1c6bd8469ae933f02c8dba77d83adab872bbfead (patch) | |
tree | 762365a1957d7cd8e8d02f0fed6500c312ad8805 | |
parent | e2f6ecc4f5852aedeb648db3167fc40386f6e73e (diff) | |
download | blogc-1c6bd8469ae933f02c8dba77d83adab872bbfead.tar.gz blogc-1c6bd8469ae933f02c8dba77d83adab872bbfead.tar.bz2 blogc-1c6bd8469ae933f02c8dba77d83adab872bbfead.zip |
travis: do not build specific binaries
-rw-r--r-- | .travis/targets/static.sh | 2 | ||||
-rw-r--r-- | .travis/targets/win32.sh | 2 | ||||
-rw-r--r-- | .travis/targets/win64.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.travis/targets/static.sh b/.travis/targets/static.sh index d252860..0c4fba4 100644 --- a/.travis/targets/static.sh +++ b/.travis/targets/static.sh @@ -6,7 +6,7 @@ build() { --disable-runserver \ --enable-make-embedded - make LDFLAGS="-all-static" blogc + make LDFLAGS="-all-static" rm -rf root mkdir -p root diff --git a/.travis/targets/win32.sh b/.travis/targets/win32.sh index 1a6745f..4598ac2 100644 --- a/.travis/targets/win32.sh +++ b/.travis/targets/win32.sh @@ -8,7 +8,7 @@ build() { --disable-git-receiver \ --disable-make \ --disable-runserver - make blogc.exe + make local pn="$(grep PACKAGE_TARNAME config.h | cut -d\" -f2)" local pv="$(grep PACKAGE_VERSION config.h | cut -d\" -f2)" diff --git a/.travis/targets/win64.sh b/.travis/targets/win64.sh index c9fed2c..8f630c7 100644 --- a/.travis/targets/win64.sh +++ b/.travis/targets/win64.sh @@ -8,7 +8,7 @@ build() { --disable-git-receiver \ --disable-make \ --disable-runserver - make blogc.exe + make local pn="$(grep PACKAGE_TARNAME config.h | cut -d\" -f2)" local pv="$(grep PACKAGE_VERSION config.h | cut -d\" -f2)" |