bugfix gtkmm: don't use $(PKG) for test program name

This commit is contained in:
Tony Theodore 2010-09-23 21:52:05 +10:00
parent 3a0eb359d6
commit 01cf7ae2fc
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ define $(PKG)_BUILD
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
'$(TARGET)-g++' \
-W -Wall -Werror -pedantic -std=c++0x\
'$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-$(PKG).exe' \
-W -Wall -Werror -pedantic -std=c++0x \
'$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-gtkmm.exe' \
`'$(TARGET)-pkg-config' gtkmm-2.4 --cflags --libs` \
-lwinspool -lcomctl32 -lcomdlg32 -ldnsapi
endef