pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for setattr, DrMemory, cleanup, tests+misc, 2024-11-05
Posted by Anonymous on Tue 5th Nov 2024 17:11
raw | new post

  1. From 1b1d97af974fc5dd8b9466caf44915e33a8fc173 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Tue, 5 Nov 2024 09:58:20 +0100
  4. Subject: [PATCH 1/8] daemon: |handle_nfs41_setattr_basicinfo()| should use
  5.  |nfs41_cached_getattr()|
  6.  
  7. |handle_nfs41_setattr_basicinfo()| should use |nfs41_cached_getattr()|
  8. to make sure we correctly get a diff between old and new attributes,
  9. even if there is no cache entry for that file (yet).
  10.  
  11. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  12. ---
  13. daemon/setattr.c | 11 +++++------
  14.  1 file changed, 5 insertions(+), 6 deletions(-)
  15.  
  16. diff --git a/daemon/setattr.c b/daemon/setattr.c
  17. index 73c311a..e772463 100644
  18. --- a/daemon/setattr.c
  19. +++ b/daemon/setattr.c
  20. @@ -66,14 +66,13 @@ static int handle_nfs41_setattr_basicinfo(void *daemon_context, setattr_upcall_a
  21.      int status = NO_ERROR;
  22.      int getattr_status;
  23.  
  24. -    getattr_status = nfs41_attr_cache_lookup(session_name_cache(state->session),
  25. -        state->file.fh.fileid, &old_info);
  26. +    getattr_status = nfs41_cached_getattr(state->session,
  27. +        &state->file, &old_info);
  28.      if (getattr_status) {
  29.          DPRINTF(0, ("handle_nfs41_setattr_basicinfo(args->path='%s'): "
  30. -            "nfs41_attr_cache_lookup() failed with error '%s'.\n",
  31. -            args->path,
  32. -            nfs_error_string(getattr_status)));
  33. -        status = nfs_to_windows_error(getattr_status, ERROR_NOT_SUPPORTED);
  34. +            "nfs41_cached_getattr() failed with error %d.\n",
  35. +            args->path, getattr_status));
  36. +        status = getattr_status;
  37.          goto out;
  38.      }
  39.  
  40. --
  41. 2.45.1
  42.  
  43. From d45d2878e5ae26a2676fb4f5aca35455176fd476 Mon Sep 17 00:00:00 2001
  44. From: Roland Mainz <roland.mainz@nrubsig.org>
  45. Date: Tue, 5 Nov 2024 10:01:33 +0100
  46. Subject: [PATCH 2/8] daemon: |handle_nfs41_setattr_basicinfo()| should use OR
  47.  to add attributes.
  48.  
  49. |handle_nfs41_setattr_basicinfo()| should use OR operator to add
  50. attributes to |info.attrmask.arr[*]|
  51.  
  52. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  53. ---
  54. daemon/setattr.c | 4 ++--
  55.  1 file changed, 2 insertions(+), 2 deletions(-)
  56.  
  57. diff --git a/daemon/setattr.c b/daemon/setattr.c
  58. index e772463..e01e962 100644
  59. --- a/daemon/setattr.c
  60. +++ b/daemon/setattr.c
  61. @@ -82,7 +82,7 @@ static int handle_nfs41_setattr_basicinfo(void *daemon_context, setattr_upcall_a
  62.          info.archive = basic_info->FileAttributes & FILE_ATTRIBUTE_ARCHIVE ? 1 : 0;
  63.  
  64.          if (info.hidden != old_info.hidden) {
  65. -            info.attrmask.arr[0] = FATTR4_WORD0_HIDDEN;
  66. +            info.attrmask.arr[0] |= FATTR4_WORD0_HIDDEN;
  67.              info.attrmask.count = 1;
  68.          }
  69.          if (info.archive != old_info.archive) {
  70. @@ -90,7 +90,7 @@ static int handle_nfs41_setattr_basicinfo(void *daemon_context, setattr_upcall_a
  71.              info.attrmask.count = 1;
  72.          }
  73.          if (info.system != old_info.system) {
  74. -            info.attrmask.arr[1] = FATTR4_WORD1_SYSTEM;
  75. +            info.attrmask.arr[1] |= FATTR4_WORD1_SYSTEM;
  76.              info.attrmask.count = 2;
  77.          }
  78.  
  79. --
  80. 2.45.1
  81.  
  82. From 8fcb3a359a08e9efa131554c59474a50038c111e Mon Sep 17 00:00:00 2001
  83. From: Roland Mainz <roland.mainz@nrubsig.org>
  84. Date: Tue, 5 Nov 2024 10:08:19 +0100
  85. Subject: [PATCH 3/8] cygwin: Update "SFU/Cygwin support" section in
  86.  README.bintarball.txt
  87.  
  88. Update "SFU/Cygwin support" section in README.bintarball.txt
  89.  
  90. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  91. ---
  92. cygwin/README.bintarball.txt | 4 +++-
  93.  1 file changed, 3 insertions(+), 1 deletion(-)
  94.  
  95. diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
  96. index 7a6271b..050007e 100644
  97. --- a/cygwin/README.bintarball.txt
  98. +++ b/cygwin/README.bintarball.txt
  99. @@ -71,7 +71,9 @@ NFSv4.1 filesystem driver for Windows 10/11&Windows Server 2019
  100.          https://docs.oracle.com/cd/E86824_01/html/E54764/nfsref-1m.html
  101.  
  102.  - SFU/Cygwin support, including:
  103. -    - uid/gid
  104. +    - POSIX uid/gid+mode
  105. +    - Backwards compatibility to Microsoft's NFSv3 driver
  106. +    - Cygwin ACLs, e.g. setfacl/getfacl
  107.      - Cygwin symlinks
  108.  
  109.  - Custom primary group support
  110. --
  111. 2.45.1
  112.  
  113. From 0bc616fd65c4453eb376fe37414b496c151ac171 Mon Sep 17 00:00:00 2001
  114. From: Roland Mainz <roland.mainz@nrubsig.org>
  115. Date: Tue, 5 Nov 2024 13:59:13 +0100
  116. Subject: [PATCH 4/8] daemon: Replace some ISO struct={ 0 } with C99 init or
  117.  |memset(&struct,0,sizeof(struct))|
  118.  
  119. Replace some ISO struct={ 0 } with C99 init or |memset(&struct,0,sizeof(struct))|,
  120. either saving some init work, or letting the profiler see the |memset()|
  121.  
  122. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  123. ---
  124. daemon/nfs41_ops.c | 13 +++++++++----
  125.  daemon/readwrite.c |  8 ++++++--
  126.  daemon/setattr.c   | 13 ++++++++++---
  127.  daemon/util.h      |  2 +-
  128.  4 files changed, 26 insertions(+), 10 deletions(-)
  129.  
  130. diff --git a/daemon/nfs41_ops.c b/daemon/nfs41_ops.c
  131. index f7af9d2..3f89b6a 100644
  132. --- a/daemon/nfs41_ops.c
  133. +++ b/daemon/nfs41_ops.c
  134. @@ -767,7 +767,7 @@ int nfs41_write(
  135.      nfs41_getattr_args getattr_args;
  136.      nfs41_getattr_res getattr_res = {0};
  137.      bitmap4 attr_request;
  138. -    nfs41_file_info info = { 0 }, *pinfo;
  139. +    nfs41_file_info info, *pinfo;
  140.  
  141.      nfs41_superblock_getattr_mask(file->fh.superblock, &attr_request);
  142.  
  143. @@ -789,8 +789,13 @@ int nfs41_write(
  144.      write_args.data = data;
  145.      write_res.resok4.verf = verf;
  146.  
  147. -    if (cinfo) pinfo = cinfo;
  148. -    else pinfo = &info;
  149. +    if (cinfo) {
  150. +        pinfo = cinfo;
  151. +    }
  152. +    else {
  153. +        (void)memset(&info, 0, sizeof(info));
  154. +        pinfo = &info;
  155. +    }
  156.  
  157.      if (stable != UNSTABLE4) {
  158.          /* if the write is stable, we can't rely on COMMIT to update
  159. @@ -1839,7 +1844,7 @@ enum nfsstat4 nfs41_fs_locations(
  160.      nfs41_lookup_res lookup_res;
  161.      nfs41_getattr_args getattr_args;
  162.      nfs41_getattr_res getattr_res NDSH(= { 0 });
  163. -    bitmap4 attr_request = { 1, { FATTR4_WORD0_FS_LOCATIONS } };
  164. +    bitmap4 attr_request = { .count=1, .arr[0]=FATTR4_WORD0_FS_LOCATIONS };
  165.      nfs41_file_info info;
  166.  
  167.      compound_init(&compound, argops, resops, "fs_locations");
  168. diff --git a/daemon/readwrite.c b/daemon/readwrite.c
  169. index bdfb902..c945fff 100644
  170. --- a/daemon/readwrite.c
  171. +++ b/daemon/readwrite.c
  172. @@ -186,7 +186,9 @@ static int write_to_mds(
  173.      int status = 0;
  174.      /* on write verifier mismatch, retry N times before failing */
  175.      uint32_t retries = MAX_WRITE_RETRIES;
  176. -    nfs41_file_info info = { 0 };
  177. +    nfs41_file_info info;
  178. +
  179. +    (void)memset(&info, 0, sizeof(info));
  180.  
  181.  retry_write:
  182.      p = args->buffer;
  183. @@ -261,7 +263,9 @@ static int write_to_pnfs(
  184.      readwrite_upcall_args *args = &upcall->args.rw;
  185.      pnfs_layout_state *layout;
  186.      int status = NO_ERROR;
  187. -    nfs41_file_info info = { 0 };
  188. +    nfs41_file_info info;
  189. +
  190. +    (void)memset(&info, 0, sizeof(info));
  191.  
  192.      if (pnfs_layout_state_open(upcall->state_ref, &layout)) {
  193.          status = ERROR_NOT_SUPPORTED;
  194. diff --git a/daemon/setattr.c b/daemon/setattr.c
  195. index e01e962..14cdc3e 100644
  196. --- a/daemon/setattr.c
  197. +++ b/daemon/setattr.c
  198. @@ -62,10 +62,13 @@ static int handle_nfs41_setattr_basicinfo(void *daemon_context, setattr_upcall_a
  199.      nfs41_open_state *state = args->state;
  200.      nfs41_superblock *superblock = state->file.fh.superblock;
  201.      stateid_arg stateid;
  202. -    nfs41_file_info info = { 0 }, old_info = { 0 };
  203. +    nfs41_file_info info, old_info;
  204.      int status = NO_ERROR;
  205.      int getattr_status;
  206.  
  207. +    (void)memset(&info, 0, sizeof(info));
  208. +    (void)memset(&old_info, 0, sizeof(old_info));
  209. +
  210.      getattr_status = nfs41_cached_getattr(state->session,
  211.          &state->file, &old_info);
  212.      if (getattr_status) {
  213. @@ -370,7 +373,7 @@ out:
  214.  
  215.  static int handle_nfs41_set_size(void *daemon_context, setattr_upcall_args *args)
  216.  {
  217. -    nfs41_file_info info = { 0 };
  218. +    nfs41_file_info info;
  219.      stateid_arg stateid;
  220.      /* note: this is called with either FILE_END_OF_FILE_INFO or
  221.       * FILE_ALLOCATION_INFO, both of which contain a single LARGE_INTEGER */
  222. @@ -378,6 +381,8 @@ static int handle_nfs41_set_size(void *daemon_context, setattr_upcall_args *args
  223.      nfs41_open_state *state = args->state;
  224.      int status;
  225.  
  226. +    (void)memset(&info, 0, sizeof(info));
  227. +
  228.      EASSERT_MSG(args->buf_len == sizeof(size->QuadPart),
  229.          ("args->buf_len=%ld\n", (long)args->buf_len));
  230.  
  231. @@ -423,9 +428,11 @@ static int handle_nfs41_link(void *daemon_context, setattr_upcall_args *args)
  232.      nfs41_path_fh dst_dir, dst;
  233.      nfs41_component dst_name;
  234.      uint32_t depth = 0;
  235. -    nfs41_file_info info = { 0 };
  236. +    nfs41_file_info info;
  237.      int status;
  238.  
  239. +    (void)memset(&info, 0, sizeof(info));
  240. +
  241.      dst_path.len = (unsigned short)WideCharToMultiByte(CP_UTF8, 0,
  242.          link->FileName, link->FileNameLength/sizeof(WCHAR),
  243.          dst_path.path, NFS41_MAX_PATH_LEN, NULL, NULL);
  244. diff --git a/daemon/util.h b/daemon/util.h
  245. index 37d50a7..739c707 100644
  246. --- a/daemon/util.h
  247. +++ b/daemon/util.h
  248. @@ -253,7 +253,7 @@ static __inline void nfstime_abs(
  249.      OUT nfstime4 *result)
  250.  {
  251.      if (nt->seconds < 0) {
  252. -        const nfstime4 zero = { 0, 0 };
  253. +        const nfstime4 zero = { .seconds=0LL, .nseconds=0UL };
  254.          nfstime_diff(&zero, nt, result); /* result = 0 - nt */
  255.      } else if (result != nt)
  256.          memcpy(result, nt, sizeof(nfstime4));
  257. --
  258. 2.45.1
  259.  
  260. From 4386fb8e02e906effbd9c1f800681a7b081962fd Mon Sep 17 00:00:00 2001
  261. From: Roland Mainz <roland.mainz@nrubsig.org>
  262. Date: Tue, 5 Nov 2024 15:45:59 +0100
  263. Subject: [PATCH 5/8] daemon: Fix DrMemory hit in |bitmap_intersect()|
  264.  
  265. Fix DrMemory hit in |bitmap_intersect()|, which happened
  266. because arr mask data were accessed beyond the maximum
  267. index specified by |bitmap4.count|.
  268.  
  269. Example:
  270. ---- snip ----
  271. Error #1: UNINITIALIZED READ: reading 4 byte(s)
  272. 0 bitmap_intersect                   [ms-nfs41-client\daemon\util.h:123]
  273. 1 nfs41_superblock_supported_attrs   [ms-nfs41-client\daemon\nfs41.h:491]
  274. 2 nfs41_open                         [ms-nfs41-client\daemon\nfs41_ops.c:535]
  275. 3 do_open                            [ms-nfs41-client\daemon\open.c:311]
  276. 4 open_or_delegate                   [ms-nfs41-client\daemon\open.c:352]
  277. 5 handle_open                        [ms-nfs41-client\daemon\open.c:972]
  278. 6 upcall_handle                      [ms-nfs41-client\daemon\upcall.c:220]
  279. 7 nfsd_worker_thread_main            [ms-nfs41-client\daemon\nfs41_daemon.c:201]
  280. 8 nfsd_thread_main                   [ms-nfs41-client\daemon\nfs41_daemon.c:239]
  281. 9 KERNEL32.dll!BaseThreadInitThunk  +0x13     (0x00007ffbfeca7374 <KERNEL32.dll+0x17374>)
  282. ---- snip ----
  283.  
  284. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  285. ---
  286. daemon/util.h | 2 +-
  287.  1 file changed, 1 insertion(+), 1 deletion(-)
  288.  
  289. diff --git a/daemon/util.h b/daemon/util.h
  290. index 739c707..2b83bbf 100644
  291. --- a/daemon/util.h
  292. +++ b/daemon/util.h
  293. @@ -120,7 +120,7 @@ static __inline void bitmap_intersect(
  294.  {
  295.      uint32_t i, count = 0;
  296.      for (i = 0; i < 3; i++) {
  297. -        dst->arr[i] &= src->arr[i];
  298. +        dst->arr[i] = ((i < dst->count)?dst->arr[i]:0) & ((i < src->count)?src->arr[i]:0);
  299.          if (dst->arr[i])
  300.              count = i+1;
  301.      }
  302. --
  303. 2.45.1
  304.  
  305. From 49f0ff208036deda21b5c7c631baa16b46a21c77 Mon Sep 17 00:00:00 2001
  306. From: Roland Mainz <roland.mainz@nrubsig.org>
  307. Date: Tue, 5 Nov 2024 16:00:25 +0100
  308. Subject: [PATCH 6/8] daemon: |handle_open()|: Remove some unnecessary ISO
  309.  struct={ 0 } initialisations
  310.  
  311. Remove some unnecessary ISO struct={ 0 } initialisations from
  312. |handle_open()| codepath.
  313.  
  314. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  315. ---
  316. daemon/open.c | 12 +++++++-----
  317.  1 file changed, 7 insertions(+), 5 deletions(-)
  318.  
  319. diff --git a/daemon/open.c b/daemon/open.c
  320. index 54b59e2..83fcac1 100644
  321. --- a/daemon/open.c
  322. +++ b/daemon/open.c
  323. @@ -761,7 +761,7 @@ static int handle_open(void *daemon_context, nfs41_upcall *upcall)
  324.          status = NO_ERROR;
  325.      } else if (args->symlink.len) {
  326.          /* handle cygwin symlinks */
  327. -        nfs41_file_info createattrs = { 0 };
  328. +        nfs41_file_info createattrs;
  329.          createattrs.attrmask.count = 2;
  330.          createattrs.attrmask.arr[0] = 0;
  331.          createattrs.attrmask.arr[1] = FATTR4_WORD1_MODE;
  332. @@ -813,10 +813,11 @@ static int handle_open(void *daemon_context, nfs41_upcall *upcall)
  333.          /* this should only happen for newly created files/dirs */
  334.          if (((info.attrmask.arr[1] & FATTR4_WORD1_OWNER) == 0) ||
  335.              ((info.attrmask.arr[1] & FATTR4_WORD1_OWNER_GROUP) == 0)) {
  336. -            bitmap4 og_attr_request = { 0 };
  337. +            bitmap4 og_attr_request;
  338.              nfs41_file_info og_info = { 0 };
  339.  
  340.              og_attr_request.count = 2;
  341. +            og_attr_request.arr[0] = 0;
  342.              og_attr_request.arr[1] =
  343.                  FATTR4_WORD1_OWNER | FATTR4_WORD1_OWNER_GROUP;
  344.              og_info.owner = og_info.owner_buf;
  345. @@ -909,7 +910,7 @@ static int handle_open(void *daemon_context, nfs41_upcall *upcall)
  346.              (unsigned int)args->owner_group_local_gid, owner_group));
  347.  #endif /* NFS41_DRIVER_FEATURE_LOCAL_UIDGID_IN_NFSV3ATTRIBUTES */
  348.      } else {
  349. -        nfs41_file_info createattrs = { 0 };
  350. +        nfs41_file_info createattrs;
  351.          uint32_t create = 0, createhowmode = 0, lookup_status = status;
  352.  
  353.          if (!lookup_status && (args->disposition == FILE_OVERWRITE ||
  354. @@ -992,10 +993,11 @@ supersede_retry:
  355.                  char *s;
  356.                  int chgrp_status;
  357.                  stateid_arg stateid;
  358. -                nfs41_file_info createchgrpattrs = { 0 };
  359. +                nfs41_file_info createchgrpattrs;
  360.  
  361.                  createchgrpattrs.attrmask.count = 2;
  362. -                createchgrpattrs.attrmask.arr[1] |= FATTR4_WORD1_OWNER_GROUP;
  363. +                createchgrpattrs.attrmask.arr[0] = 0;
  364. +                createchgrpattrs.attrmask.arr[1] = FATTR4_WORD1_OWNER_GROUP;
  365.                  createchgrpattrs.owner_group = createchgrpattrs.owner_group_buf;
  366.                  /* fixme: we should store the |owner_group| name in |upcall| */
  367.                  if (!get_token_primarygroup_name(upcall->currentthread_token,
  368. --
  369. 2.45.1
  370.  
  371. From 65978f4e4929d41a23744e3528d56aa1b7eba8fb Mon Sep 17 00:00:00 2001
  372. From: Roland Mainz <roland.mainz@nrubsig.org>
  373. Date: Tue, 5 Nov 2024 16:03:16 +0100
  374. Subject: [PATCH 7/8] daemon: Add comment that |nfs41_file_info_cpy()| can
  375.  cause DrMemory hits
  376.  
  377. Add comment that |nfs41_file_info_cpy()| can cause DrMemory hits.
  378.  
  379. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  380. ---
  381. daemon/fileinfoutil.c | 5 +++++
  382.  1 file changed, 5 insertions(+)
  383.  
  384. diff --git a/daemon/fileinfoutil.c b/daemon/fileinfoutil.c
  385. index 29f9b4d..a5269fe 100644
  386. --- a/daemon/fileinfoutil.c
  387. +++ b/daemon/fileinfoutil.c
  388. @@ -447,6 +447,11 @@ void nfs41_file_info_cpy(
  389.      OUT nfs41_file_info *dest,
  390.      IN const nfs41_file_info *src)
  391.  {
  392. +    /*
  393. +     * FIXME: Using |memcpy()| here over the whole struct
  394. +     * |nfs41_file_info| will trigger DrMemory uninitialized
  395. +     * variable hits if |*src| was not completely initialized
  396. +     */
  397.      (void)memcpy(dest, src, sizeof(nfs41_file_info));
  398.      if (src->owner != NULL)
  399.          dest->owner = dest->owner_buf;
  400. --
  401. 2.45.1
  402.  
  403. From 28641a2910e724d10fcabf5fa0564bf075462e96 Mon Sep 17 00:00:00 2001
  404. From: Roland Mainz <roland.mainz@nrubsig.org>
  405. Date: Tue, 5 Nov 2024 18:00:56 +0100
  406. Subject: [PATCH 8/8] tests: nfsbuildtest bash build should install bash to
  407.  install_root/ dir
  408.  
  409. nfsbuildtest bash build should install bash to install_root/ dir
  410. to test /usr/bin/install&co.
  411.  
  412. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  413. ---
  414. tests/manual_testing.txt              | 2 ++
  415.  tests/nfsbuildtest/nfsbuildtest.ksh93 | 9 +++++++--
  416.  2 files changed, 9 insertions(+), 2 deletions(-)
  417.  
  418. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  419. index 883f722..65848c8 100644
  420. --- a/tests/manual_testing.txt
  421. +++ b/tests/manual_testing.txt
  422. @@ -38,6 +38,8 @@
  423.  #   nedit
  424.  #   emacs
  425.  #   cygport
  426. +#   gettext
  427. +#   gettext-devel
  428.  #   ---- snip ----
  429.  #
  430.  # - Benchmarking/profiling should be done with the realtime virus checker
  431. diff --git a/tests/nfsbuildtest/nfsbuildtest.ksh93 b/tests/nfsbuildtest/nfsbuildtest.ksh93
  432. index 15c3c6b..7ea4921 100644
  433. --- a/tests/nfsbuildtest/nfsbuildtest.ksh93
  434. +++ b/tests/nfsbuildtest/nfsbuildtest.ksh93
  435. @@ -262,6 +262,9 @@ function bash_build
  436.         # patch sources and configure build
  437.         #
  438.  
  439. +       # disable loadable plugins
  440. +       sed -i -E 's/-\( cd \$\(LOADABLES_DIR\) && \$\(MAKE\) \$\(MFLAGS\) DESTDIR=\$\(DESTDIR\) \$@ \)//' Makefile.in
  441. +
  442.         # Cygwin: workaround for configure using cp -p where ln -s should be used
  443.         # (this is an automake/autoconf issue, they should trust Cygwin and not use
  444.         # ancient workarounds for issues which no longer exists)
  445. @@ -304,9 +307,9 @@ function bash_build
  446.         # build bash
  447.         #
  448.         if (( (cygwin_vers.major*1000+cygwin_vers.minor) >= 3005 )) ; then
  449. -               time ksh93 -c 'export SHELL=/bin/ksh93 ; bmake -j8'
  450. +               time ksh93 -c 'export SHELL=/bin/ksh93 ; bmake -j8 install DESTDIR=$PWD/install_root'
  451.         else
  452. -               time ksh93 -c 'export SHELL=/bin/ksh93 ; make -j8'
  453. +               time ksh93 -c 'export SHELL=/bin/ksh93 ; make -j8 install DESTDIR=$PWD/install_root'
  454.         fi
  455.         echo $?
  456.  
  457. @@ -548,6 +551,8 @@ function main
  458.                                 is_cygwin_pkg_installed icp 'make' || (( errc++ ))
  459.                         fi
  460.                         is_cygwin_pkg_installed icp 'libncurses-devel' || (( errc++ ))
  461. +                       is_cygwin_pkg_installed icp 'gettext' || (( errc++ ))
  462. +                       is_cygwin_pkg_installed icp 'gettext-devel' || (( errc++ ))
  463.                         (( errc > 0 )) && return 1
  464.                         bash_build
  465.                         return $?
  466. --
  467. 2.45.1

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at