1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Comment out the shebang line
The wscript script is installed as a non executable file, so there is
no need for keeping the shebang line.
Author: Rafael Laboissière <rafael@debian.org>
Forwarded: https://sourceforge.net/p/xmds/mailman/message/36960972/
Last-Update: 2020-03-29
--- xmds2-3.0.0+dfsg.orig/xpdeint/support/wscript
+++ xmds2-3.0.0+dfsg/xpdeint/support/wscript
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+##!/usr/bin/env python3
# encoding: utf-8
"""
wscript
|