summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Swift/Packaging/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/Swift/Packaging/SConscript b/Swift/Packaging/SConscript
index bd7e6d8..3aa791f 100644
--- a/Swift/Packaging/SConscript
+++ b/Swift/Packaging/SConscript
@@ -20,10 +20,10 @@ if env["SCONS_STAGE"] == "build" :
20 20
21 swiftenConfigHelp = env.Command( 21 swiftenConfigHelp = env.Command(
22 target='$HELP2MAN_DEBIAN_DIR/swiften-config.1', source='#/Swiften/Config/swiften-config', 22 target='$HELP2MAN_DEBIAN_DIR/swiften-config.1', source='#/Swiften/Config/swiften-config',
23 action = Action('$HELP2MAN -m "Swift Manual" -S "swiften-config" -n "swiften-config" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR")) 23 action = Action('$HELP2MAN --no-discard-stderr -m "Swift Manual" -S "swiften-config" -n "swiften-config" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR"))
24 swiftHelp = env.Command( 24 swiftHelp = env.Command(
25 target='$HELP2MAN_DEBIAN_DIR/swift-im.1', source='#/Swift/QtUI/swift-im', 25 target='$HELP2MAN_DEBIAN_DIR/swift-im.1', source='#/Swift/QtUI/swift-im',
26 action = Action('$HELP2MAN -m "Swift Manual" -S "Swift" -n "swift-im" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR")) 26 action = Action('$HELP2MAN --no-discard-stderr -m "Swift Manual" -S "Swift" -n "swift-im" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR"))
27 else: 27 else:
28 print "Enabled help2man but help2man is not in the PATH of the current environment." 28 print "Enabled help2man but help2man is not in the PATH of the current environment."
29 Exit(1) \ No newline at end of file 29 Exit(1)