NetTalk Central

Author Topic: netweba.tpw %gNetWebFolder constant  (Read 1515 times)

Larry Sand

  • Full Member
  • ***
  • Posts: 101
    • View Profile
netweba.tpw %gNetWebFolder constant
« on: June 18, 2012, 08:36:14 AM »
Hi Bruce,

I'm looking at controlling what's being copied and gzipped and found that In netweba.tpw the code to set the source folder for the copy batch file builds an invalid path.  Currently it is:
----
  #IF(%gNetWebFolder = '')
    #IF(%cwversion<7000)
      #SET(%srcDir,%root & '3rdparty\libsrc\netweb\web\*.*')
      #SET(%bindir,%root & '3rdparty\bin')
    #ELSE
      #SET(%srcDir,%root & 'accessory\libsrc\win\netweb\web\*.*')
      #SET(%bindir,%root & 'accessory\bin')
    #ENDIF
  #ELSE
    #SET(%srcdir,%gNetWebFolder &' \web')
  #ENDIF
----

This line:
    #SET(%srcdir,%gNetWebFolder &' \web')

And it looks like it should be:
    #SET(%srcdir,%gNetWebFolder &'\web\*.*')

Thanks,
Larry Sand

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11191
    • View Profile
Re: netweba.tpw %gNetWebFolder constant
« Reply #1 on: June 18, 2012, 10:10:34 PM »
fixed in 6.34, thanks.