blob: 7cfd3a350f33a034aaeadeaf10f045a84fb03996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- launcher/Makefile.in.orig Thu Feb 14 22:17:29 2002
+++ launcher/Makefile.in Thu Feb 14 22:18:22 2002
@@ -12,6 +12,7 @@
SHELL = @SHELL@
+GLIB_CONFIG = @GLIB_CONFIG@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
@@ -150,13 +151,13 @@
cxxflags_set = @cxxflags_set@
l = @l@
-INCLUDES = `glib-config --cflags` -I. -I.. -g -O
+INCLUDES = `$(GLIB_CONFIG) --cflags` -I. -I.. -g -O
bin_PROGRAMS = anjuta_launcher
anjuta_launcher_SOURCES = anjuta_launcher.c
-anjuta_launcher_LDFLAGS = `glib-config --libs`
+anjuta_launcher_LDFLAGS = `$(GLIB_CONFIG) --libs`
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../config.h
CONFIG_CLEAN_FILES =
|