diff options
author | Tony Theodore <tonyt@logyst.com> | 2010-09-23 11:52:05 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2010-09-23 11:52:05 (GMT) |
commit | 01cf7ae2fc3fb82b71b8305278be5576c82b1dac (patch) | |
tree | 657f2e51b62f90600519316982d4f6128b1c5f96 | |
parent | 3a0eb359d6f140d82cd457badec6873fb81adc74 (diff) | |
download | mxe-01cf7ae2fc3fb82b71b8305278be5576c82b1dac.zip mxe-01cf7ae2fc3fb82b71b8305278be5576c82b1dac.tar.gz mxe-01cf7ae2fc3fb82b71b8305278be5576c82b1dac.tar.bz2 |
bugfix gtkmm: don't use $(PKG) for test program name
-rw-r--r-- | src/gtkmm.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtkmm.mk b/src/gtkmm.mk index e8b604a..5f801f7 100644 --- a/src/gtkmm.mk +++ b/src/gtkmm.mk @@ -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 |