You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "William S. (JIRA)" <ji...@apache.org> on 2011/02/16 12:40:57 UTC

[jira] Created: (COUCHDB-1068) unterminated `s' command

unterminated `s' command
------------------------

                 Key: COUCHDB-1068
                 URL: https://issues.apache.org/jira/browse/COUCHDB-1068
             Project: CouchDB
          Issue Type: Bug
          Components: Build System
    Affects Versions: 1.0.2
         Environment: SunOS 5.10 Generic_118822-25 sun4u sparc SUNW,Ultra-60, sed --version
GNU sed version 4.2.1, gmake --version GNU Make 3.80, gcc version 4.3.3 (20091210) (gccfss) (GCC)
            Reporter: William S.
             Fix For: 1.0.2


gmake[4]: Entering directory `/export/home/wstan/temp_couchdb/apache-couchdb-1.0.2/src/couchdb'
modules=`{ find . -name "*.erl" -exec basename {} .erl \; | tr '\n' ','; echo ''; } | sed "s/,$//"`; \
sed -e "s|%package_name%|Apache CouchDB|g" \
    -e "s|%version%|1.0.2|g" \
    -e "s|@modules@|$modules|g" \
    -e "s|%localconfdir%|/opt/couchdb/etc/couchdb|g" \
    -e "s|@defaultini@|default.ini|g" \
    -e "s|@localini@|local.ini|g" > \
couch.app < couch.app.tpl
sed: -e expression #3, char 31: unterminated `s' command
gmake[4]: *** [couch.app] Error 1

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (COUCHDB-1068) unterminated `s' command

Posted by "William S. (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COUCHDB-1068?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

William S. closed COUCHDB-1068.
-------------------------------


This was not a bug.

> unterminated `s' command
> ------------------------
>
>                 Key: COUCHDB-1068
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1068
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Build System
>    Affects Versions: 1.0.2
>         Environment: SunOS 5.10 Generic_118822-25 sun4u sparc SUNW,Ultra-60, sed --version
> GNU sed version 4.2.1, gmake --version GNU Make 3.80, gcc version 4.3.3 (20091210) (gccfss) (GCC)
>            Reporter: William S.
>              Labels: build
>             Fix For: 1.0.2
>
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> gmake[4]: Entering directory `/export/home/wstan/temp_couchdb/apache-couchdb-1.0.2/src/couchdb'
> modules=`{ find . -name "*.erl" -exec basename {} .erl \; | tr '\n' ','; echo ''; } | sed "s/,$//"`; \
> sed -e "s|%package_name%|Apache CouchDB|g" \
>     -e "s|%version%|1.0.2|g" \
>     -e "s|@modules@|$modules|g" \
>     -e "s|%localconfdir%|/opt/couchdb/etc/couchdb|g" \
>     -e "s|@defaultini@|default.ini|g" \
>     -e "s|@localini@|local.ini|g" > \
> couch.app < couch.app.tpl
> sed: -e expression #3, char 31: unterminated `s' command
> gmake[4]: *** [couch.app] Error 1

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (COUCHDB-1068) unterminated `s' command

Posted by "William S. (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/COUCHDB-1068?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12995510#comment-12995510 ] 

William S. commented on COUCHDB-1068:
-------------------------------------

actual file is src/couchdb/Makefile.am

couch.app: couch.app.tpl
        modules=`{ find . -name "*.erl" -exec basename {} .erl \; | tr '\n' ',';
 echo ''; } | sed "s/,$$//"`; \
        sed -e "s|%package_name%|@package_name@|g" \
                        -e "s|%version%|@version@|g" \
                        -e "s|@modules@|$$modules|g" \
                        -e "s|%localconfdir%|@localconfdir@|g" \
                        -e "s|@defaultini@|default.ini|g" \
                        -e "s|@localini@|local.ini|g" > \
        $@ < $<
        chmod +x $@


> unterminated `s' command
> ------------------------
>
>                 Key: COUCHDB-1068
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1068
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Build System
>    Affects Versions: 1.0.2
>         Environment: SunOS 5.10 Generic_118822-25 sun4u sparc SUNW,Ultra-60, sed --version
> GNU sed version 4.2.1, gmake --version GNU Make 3.80, gcc version 4.3.3 (20091210) (gccfss) (GCC)
>            Reporter: William S.
>              Labels: build
>             Fix For: 1.0.2
>
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> gmake[4]: Entering directory `/export/home/wstan/temp_couchdb/apache-couchdb-1.0.2/src/couchdb'
> modules=`{ find . -name "*.erl" -exec basename {} .erl \; | tr '\n' ','; echo ''; } | sed "s/,$//"`; \
> sed -e "s|%package_name%|Apache CouchDB|g" \
>     -e "s|%version%|1.0.2|g" \
>     -e "s|@modules@|$modules|g" \
>     -e "s|%localconfdir%|/opt/couchdb/etc/couchdb|g" \
>     -e "s|@defaultini@|default.ini|g" \
>     -e "s|@localini@|local.ini|g" > \
> couch.app < couch.app.tpl
> sed: -e expression #3, char 31: unterminated `s' command
> gmake[4]: *** [couch.app] Error 1

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (COUCHDB-1068) unterminated `s' command

Posted by "William S. (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COUCHDB-1068?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

William S. resolved COUCHDB-1068.
---------------------------------

    Resolution: Fixed

This issue was resolved by using alternate "tr".

> unterminated `s' command
> ------------------------
>
>                 Key: COUCHDB-1068
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1068
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Build System
>    Affects Versions: 1.0.2
>         Environment: SunOS 5.10 Generic_118822-25 sun4u sparc SUNW,Ultra-60, sed --version
> GNU sed version 4.2.1, gmake --version GNU Make 3.80, gcc version 4.3.3 (20091210) (gccfss) (GCC)
>            Reporter: William S.
>              Labels: build
>             Fix For: 1.0.2
>
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> gmake[4]: Entering directory `/export/home/wstan/temp_couchdb/apache-couchdb-1.0.2/src/couchdb'
> modules=`{ find . -name "*.erl" -exec basename {} .erl \; | tr '\n' ','; echo ''; } | sed "s/,$//"`; \
> sed -e "s|%package_name%|Apache CouchDB|g" \
>     -e "s|%version%|1.0.2|g" \
>     -e "s|@modules@|$modules|g" \
>     -e "s|%localconfdir%|/opt/couchdb/etc/couchdb|g" \
>     -e "s|@defaultini@|default.ini|g" \
>     -e "s|@localini@|local.ini|g" > \
> couch.app < couch.app.tpl
> sed: -e expression #3, char 31: unterminated `s' command
> gmake[4]: *** [couch.app] Error 1

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (COUCHDB-1068) unterminated `s' command

Posted by "Noah Slater (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/COUCHDB-1068?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13018318#comment-13018318 ] 

Noah Slater commented on COUCHDB-1068:
--------------------------------------

Can you clarify if we have anything to fix in the source?

> unterminated `s' command
> ------------------------
>
>                 Key: COUCHDB-1068
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1068
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Build System
>    Affects Versions: 1.0.2
>         Environment: SunOS 5.10 Generic_118822-25 sun4u sparc SUNW,Ultra-60, sed --version
> GNU sed version 4.2.1, gmake --version GNU Make 3.80, gcc version 4.3.3 (20091210) (gccfss) (GCC)
>            Reporter: William S.
>              Labels: build
>             Fix For: 1.0.2
>
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> gmake[4]: Entering directory `/export/home/wstan/temp_couchdb/apache-couchdb-1.0.2/src/couchdb'
> modules=`{ find . -name "*.erl" -exec basename {} .erl \; | tr '\n' ','; echo ''; } | sed "s/,$//"`; \
> sed -e "s|%package_name%|Apache CouchDB|g" \
>     -e "s|%version%|1.0.2|g" \
>     -e "s|@modules@|$modules|g" \
>     -e "s|%localconfdir%|/opt/couchdb/etc/couchdb|g" \
>     -e "s|@defaultini@|default.ini|g" \
>     -e "s|@localini@|local.ini|g" > \
> couch.app < couch.app.tpl
> sed: -e expression #3, char 31: unterminated `s' command
> gmake[4]: *** [couch.app] Error 1

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira