ObjFW  Check-in [a02aeca5a9]

Overview
Comment:objfw-config: Rename package_{description->format}
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a02aeca5a9c6da35fd322e7828f6175f0806756bddaf08a8a4440ba198fcbdc3
User & Date: js on 2019-04-20 20:34:37
Other Links: manifest | tags
Context
2019-04-21
09:58
Fix compilation on AmigaOS 4 with 53.30 SDK check-in: 50a6ffd4b1 user: js tags: trunk
2019-04-20
20:34
objfw-config: Rename package_{description->format} check-in: a02aeca5a9 user: js tags: trunk
2019-04-16
22:15
OFURLHandler_file: Fix #ifdef inconsistency check-in: 050c869a7a user: js tags: trunk
Changes

Modified utils/objfw-config.in from [c9aa276a86] to [46555fcbc5].

72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
    --version         Outputs the installed version
__EOF__
	exit $1
}

test -z "$1" && show_help 1

package_description() {
	if test "$1" != "1"; then
		echo "Unsupported package description version: $1" 1>&2
		exit 1
	fi
}

package_depends_on() {
	if ! test -f "$packagesdir/$1.oc"; then
		echo "No such package: $1" 1>&2







|

|







72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
    --version         Outputs the installed version
__EOF__
	exit $1
}

test -z "$1" && show_help 1

package_format() {
	if test "$1" != "1"; then
		echo "Unsupported package format version: $1" 1>&2
		exit 1
	fi
}

package_depends_on() {
	if ! test -f "$packagesdir/$1.oc"; then
		echo "No such package: $1" 1>&2