diff options
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/Packaging/SConscript | 6 |
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" : swiftenConfigHelp = env.Command( target='$HELP2MAN_DEBIAN_DIR/swiften-config.1', source='#/Swiften/Config/swiften-config', - action = Action('$HELP2MAN -m "Swift Manual" -S "swiften-config" -n "swiften-config" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR")) + action = Action('$HELP2MAN --no-discard-stderr -m "Swift Manual" -S "swiften-config" -n "swiften-config" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR")) swiftHelp = env.Command( target='$HELP2MAN_DEBIAN_DIR/swift-im.1', source='#/Swift/QtUI/swift-im', - action = Action('$HELP2MAN -m "Swift Manual" -S "Swift" -n "swift-im" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR")) + action = Action('$HELP2MAN --no-discard-stderr -m "Swift Manual" -S "Swift" -n "swift-im" -N $SOURCE > $TARGET', cmdstr = "$HELP2MANSTR")) else: print "Enabled help2man but help2man is not in the PATH of the current environment." - Exit(1)
\ No newline at end of file + Exit(1) |