From 54dc0198a724af4c86e7b661f6874993725e2b4d Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Wed, 24 Oct 2012 19:14:00 +0400 Subject: [PATCH] gtk -examples --- c/gtk-tutorial/helloworld/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/gtk-tutorial/helloworld/run.sh b/c/gtk-tutorial/helloworld/run.sh index 6d17970..cc8138d 100755 --- a/c/gtk-tutorial/helloworld/run.sh +++ b/c/gtk-tutorial/helloworld/run.sh @@ -1,3 +1,3 @@ #!/bin/bash -gcc -Wall -g 1.c -o helloworld `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0` && ./helloworld +gcc -Wall -g helloworld.c -o helloworld `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0` && ./helloworld