Commit b74faea5 authored by nextime's avatar nextime

Fix debian/rules Makefile syntax error in wsssh-server package

- Fixed missing separator error on line 26 caused by tab indentation in here document
- Changed cat > wssshd.spec << EOF to cat > wssshd.spec << 'EOF' to prevent shell expansion
- This resolves the dpkg-buildpackage error when building wsssh-server package
- The PyInstaller spec file generation now works correctly in the Makefile context
parent 1eae155d
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
override_dh_auto_configure: override_dh_auto_configure:
# Create PyInstaller spec file for wssshd # Create PyInstaller spec file for wssshd
cat > wssshd.spec << EOF cat > wssshd.spec << 'EOF'
# -*- mode: python ; coding: utf-8 -*- # -*- mode: python ; coding: utf-8 -*-
block_cipher = None block_cipher = None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment