FreeBSD Bugzilla – Attachment 207177 Details for
Bug 240308
security/fsh: Remove redundant escapes of ordinary characters
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
svn(1) diff against the ports tree
fsh.diff (text/plain), 4.00 KB, created by
Kyle Evans
on 2019-09-04 02:52:06 UTC
(
hide
)
Description:
svn(1) diff against the ports tree
Filename:
MIME Type:
Creator:
Kyle Evans
Created:
2019-09-04 02:52:06 UTC
Size:
4.00 KB
patch
obsolete
>Index: security/fsh/files/patch-Makefile.in >=================================================================== >--- security/fsh/files/patch-Makefile.in (nonexistent) >+++ security/fsh/files/patch-Makefile.in (working copy) >@@ -0,0 +1,71 @@ >+--- Makefile.in.orig 2001-12-23 11:10:13 UTC >++++ Makefile.in >+@@ -40,7 +40,7 @@ exec_prefix = @exec_prefix@ >+ >+ bindir = @bindir@ >+ sbindir = @sbindir@ >+-libexecdir = @libexecdir@ >++libexecdir = @ac_libexecdir@ >+ datadir = @datadir@ >+ sysconfdir = @sysconfdir@ >+ sharedstatedir = @sharedstatedir@ >+@@ -81,7 +81,7 @@ EXEEXT = @EXEEXT@ >+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ >+ OBJEXT = @OBJEXT@ >+ PACKAGE = @PACKAGE@ >+-PYTHON = @PYTHON@ >++PYTHON = @PYTHON_CMD@ >+ VERSION = @VERSION@ >+ am__include = @am__include@ >+ am__quote = @am__quote@ >+@@ -576,16 +576,16 @@ uninstall-am: uninstall-binSCRIPTS uninstall-info-am \ >+ >+ starter: Makefile $(srcdir)/$(PYTHON_SCRIPT_TEMPLATE) >+ rm -f $@ $@.tmp >+- sed -e 's%@\PYTHON@%$(PYTHON)%' \ >+- -e 's%@\pkgdatadir@%$(pkgdatadir)%' \ >++ sed -e 's%@PYTHON@%$(PYTHON)%' \ >++ -e 's%@pkgdatadir@%$(pkgdatadir)%' \ >+ < $(srcdir)/$(PYTHON_SCRIPT_TEMPLATE) > $@.tmp >+ mv $@.tmp $@ >+ >+ fsh: fsh.in Makefile starter >+ rm -f $@ $@.tmp >+ cat starter > $@.tmp >+- sed -e 's%@\PYTHON@%$(PYTHON)%' \ >+- -e 's%@\pkgdatadir@%$(pkgdatadir)%' \ >++ sed -e 's%@PYTHON@%$(PYTHON)%' \ >++ -e 's%@pkgdatadir@%$(pkgdatadir)%' \ >+ < $(srcdir)/fsh.in >> $@.tmp >+ chmod +x $@.tmp >+ mv $@.tmp $@ >+@@ -593,8 +593,8 @@ fsh: fsh.in Makefile starter >+ fshd: fshd.in Makefile starter >+ rm -f $@ $@.tmp >+ cat starter > $@.tmp >+- sed -e 's%@\PYTHON@%$(PYTHON)%' \ >+- -e 's%@\pkgdatadir@%$(pkgdatadir)%' \ >++ sed -e 's%@PYTHON@%$(PYTHON)%' \ >++ -e 's%@pkgdatadir@%$(pkgdatadir)%' \ >+ < $(srcdir)/fshd.in >> $@.tmp >+ chmod +x $@.tmp >+ mv $@.tmp $@ >+@@ -602,15 +602,15 @@ fshd: fshd.in Makefile starter >+ in.fshd: in.fshd.in Makefile starter >+ rm -f $@ $@.tmp >+ cat starter > $@.tmp >+- sed -e 's%@\PYTHON@%$(PYTHON)%' \ >+- -e 's%@\pkgdatadir@%$(pkgdatadir)%' \ >++ sed -e 's%@PYTHON@%$(PYTHON)%' \ >++ -e 's%@pkgdatadir@%$(pkgdatadir)%' \ >+ < $(srcdir)/in.fshd.in >> $@.tmp >+ chmod +x $@.tmp >+ mv $@.tmp $@ >+ >+ fcp: fcp.sh Makefile >+ rm -f $@ $@.tmp >+- sed -e 's%@\libexecdir@%$(libexecdir)%g' \ >++ sed -e 's%@libexecdir@%$(libexecdir)%g' \ >+ < $(srcdir)/fcp.sh > $@.tmp >+ chmod +x $@.tmp >+ mv $@.tmp $@ > >Property changes on: security/fsh/files/patch-Makefile.in >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: security/fsh/files/patch-configure >=================================================================== >--- security/fsh/files/patch-configure (nonexistent) >+++ security/fsh/files/patch-configure (working copy) >@@ -0,0 +1,20 @@ >+--- configure.orig 2001-12-23 11:10:13 UTC >++++ configure >+@@ -2732,7 +2732,7 @@ s,@prefix@,$prefix,;t t >+ s,@program_transform_name@,$program_transform_name,;t t >+ s,@bindir@,$bindir,;t t >+ s,@sbindir@,$sbindir,;t t >+-s,@libexecdir@,$libexecdir,;t t >++s,@ac_libexecdir@,$libexecdir,;t t >+ s,@datadir@,$datadir,;t t >+ s,@sysconfdir@,$sysconfdir,;t t >+ s,@sharedstatedir@,$sharedstatedir,;t t >+@@ -2778,7 +2778,7 @@ s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t >+ s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t >+ s,@DEPDIR@,$DEPDIR,;t t >+ s,@DEFAULT_FSHD_TIMEOUT@,$DEFAULT_FSHD_TIMEOUT,;t t >+-s,@PYTHON@,$PYTHON,;t t >++s,@PYTHON_CMD@,$PYTHON,;t t >+ s,@PYTHON_SCRIPT_TEMPLATE@,$PYTHON_SCRIPT_TEMPLATE,;t t >+ s,@CC@,$CC,;t t >+ s,@CFLAGS@,$CFLAGS,;t t > >Property changes on: security/fsh/files/patch-configure >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 240308
:
207152
| 207177