diff options
author | Tony Theodore <tonyt@logyst.com> | 2015-11-21 02:55:08 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2015-11-21 02:55:08 (GMT) |
commit | 9c000cf49c3b5dfa784a84266d30df970b832908 (patch) | |
tree | 425126157cd6e5e70dd2053874c4a56d50edf1a1 | |
parent | 554d7fcf03672fdbbfb3f8d2f30efb2b62fbecdf (diff) | |
download | mxe-9c000cf49c3b5dfa784a84266d30df970b832908.zip mxe-9c000cf49c3b5dfa784a84266d30df970b832908.tar.gz mxe-9c000cf49c3b5dfa784a84266d30df970b832908.tar.bz2 |
cleanup style
-rw-r--r-- | src/gtk3-test.c | 2 | ||||
-rw-r--r-- | src/widl.mk | 2 | ||||
-rwxr-xr-x | tools/travis-push.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gtk3-test.c b/src/gtk3-test.c index 7442034..3241fa4 100644 --- a/src/gtk3-test.c +++ b/src/gtk3-test.c @@ -14,7 +14,7 @@ static void activate(GtkApplication *app) button = gtk_button_new_with_label("Hello World"); g_signal_connect_swapped(button, "clicked", - G_CALLBACK(gtk_widget_destroy), window); + G_CALLBACK(gtk_widget_destroy), window); gtk_container_add(GTK_CONTAINER(window), button); gtk_widget_show_all(window); diff --git a/src/widl.mk b/src/widl.mk index 1c7375b..c0ef1fa 100644 --- a/src/widl.mk +++ b/src/widl.mk @@ -24,7 +24,7 @@ define $(PKG)_BUILD --prefix='$(PREFIX)' \ --target='$(TARGET)' $(MAKE) -C '$(1)/mingw-w64-tools/widl' -j '$(JOBS)' install - + # create cmake file echo 'set(CMAKE_WIDL $(PREFIX)/bin/$(TARGET)-$(PKG) CACHE PATH "widl executable")' \ > '$(CMAKE_TOOLCHAIN_DIR)/$(PKG).cmake' diff --git a/tools/travis-push.sh b/tools/travis-push.sh index 8aa02c0..998ddae 100755 --- a/tools/travis-push.sh +++ b/tools/travis-push.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -ue |