about summary refs log tree commit diff
path: root/pkgs/applications/radio/gnuradio/modtool-newmod-permissions.3_9.patch
blob: 7cab73fede0cc5ee919f52da6794f7642d84667b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git c/gr-utils/modtool/core/newmod.py w/gr-utils/modtool/core/newmod.py
index babebfcde..9a02f663e 100644
--- c/gr-utils/modtool/core/newmod.py
+++ w/gr-utils/modtool/core/newmod.py
@@ -62,7 +62,9 @@ class ModToolNewModule(ModTool):
         self._setup_scm(mode='new')
         logger.info(f"Creating out-of-tree module in {self.dir}...")
         try:
-            shutil.copytree(self.srcdir, self.dir)
+            # https://stackoverflow.com/a/17022146/4935114
+            shutil.copystat = lambda x, y: x
+            shutil.copytree(self.srcdir, self.dir, copy_function=shutil.copyfile)
             try:
               shutil.copyfile(os.path.join(gr.prefix(), 'share', 'gnuradio', 'clang-format.conf'),
                               os.path.join(self.dir, '.clang-format'))