ObjFW  Check-in [a94bef49d7]

Overview
Comment:Fix missing spaces when using objfw-config --all.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a94bef49d72e6da16ca1814dcf096549ad70041153e1404c69de73d5b6d9abe0
User & Date: js on 2011-01-31 21:58:47
Other Links: manifest | tags
Context
2011-01-31
22:35
wint_t might be smaller than int so that integer promotions apply. check-in: f17bdd0722 user: js tags: trunk
21:58
Fix missing spaces when using objfw-config --all. check-in: a94bef49d7 user: js tags: trunk
18:53
Fix ObjC++. check-in: c8a9dd6194 user: js tags: trunk
Changes

Modified utils/objfw-config.in from [3e4d53e67a] to [a79a727b4f].

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
}

test -z "$1" && show_help

while test ! -z "$1"; do
	case "$1" in
		--all)
			printf "%s %s %s" "$CFLAGS" "$CPPFLAGS" "$CXXFLAGS"
			printf "%s %s" "$OBJCFLAGS" "$LDFLAGS"
			printf "%s %s" "$LDFLAGS_REEXPORT" "$LDFLAGS_RPATH"
			printf "%s" "$LIBS"
			;;
		--cflags)
			printf "%s" "$CFLAGS"
			;;
		--cppflags)
			printf "%s" "$CPPFLAGS"







|
|
|







64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
}

test -z "$1" && show_help

while test ! -z "$1"; do
	case "$1" in
		--all)
			printf "%s %s %s " "$CFLAGS" "$CPPFLAGS" "$CXXFLAGS"
			printf "%s %s " "$OBJCFLAGS" "$LDFLAGS"
			printf "%s %s " "$LDFLAGS_REEXPORT" "$LDFLAGS_RPATH"
			printf "%s" "$LIBS"
			;;
		--cflags)
			printf "%s" "$CFLAGS"
			;;
		--cppflags)
			printf "%s" "$CPPFLAGS"