diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-05-11 17:29:25 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-05-11 17:29:25 -0700 |
commit | a8de1219942e78db2cd193ffe745535d3c2d84b0 (patch) | |
tree | 615a124553878c102ed516aad04b034e125a3c89 | |
parent | 2771fbf28d6ee6cce09df0f245322d60e21795af (diff) |
configure.ac: Fix support for the deprecated --with-launchd-id-prefix
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 15bcc12..dcdbdf0 100644 --- a/configure.ac +++ b/configure.ac @@ -108,8 +108,7 @@ AC_ARG_WITH(launchd-id-prefix, AS_HELP_STRING([--with-launchd-id-prefix=PATH], [ bundleidprefix="${withval}" ], [ bundleidprefix="org.x" ]) AC_ARG_WITH(bundle-id-prefix, AS_HELP_STRING([--with-bundle-id-prefix=PATH], [Prefix to use for bundle identifiers (default: org.x)]), - [ bundleidprefix="${withval}" ], - [ bundleidprefix="org.x" ]) + [ bundleidprefix="${withval}" ]) if test "x$LAUNCHD" = "xauto"; then unset LAUNCHD |