FreeBSD Bugzilla – Attachment 193791 Details for
Bug 228540
graphics/poppler: build fails after security/nss was updated to 3.37.1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for src/replicant.adb
patch-local-src-replicant.adb (text/plain), 1.57 KB, created by
Trond Endrestøl
on 2018-05-28 15:31:49 UTC
(
hide
)
Description:
Patch for src/replicant.adb
Filename:
MIME Type:
Creator:
Trond Endrestøl
Created:
2018-05-28 15:31:49 UTC
Size:
1.57 KB
patch
obsolete
>--- src/replicant.adb 2018-05-08 19:44:01.000000000 +0200 >+++ src/replicant.adb 2018-05-28 17:07:32.023963000 +0200 >@@ -838,6 +838,39 @@ > end copy_rc_default; > > >+ ------------------- >+ -- copy_etc_rc -- >+ ------------------- >+ procedure copy_etc_rcsubr (path_to_etc : String) >+ is >+ rcsubr : constant String := "/rc.subr"; >+ etc_rcsubr : constant String := "/etc" & rcsubr; >+ begin >+ if not AD.Exists (etc_rcsubr) then >+ return; >+ end if; >+ AD.Copy_File (Source_Name => etc_rcsubr, >+ Target_Name => path_to_etc & rcsubr); >+ end copy_etc_rcsubr; >+ >+ >+ --------------------- >+ -- copy_ldconfig -- >+ --------------------- >+ procedure copy_ldconfig (path_to_etc : String) >+ is >+ ldconfig : constant String := "/rc.d/ldconfig"; >+ etc_ldconfig : constant String := "/etc" & ldconfig; >+ begin >+ if not AD.Exists (etc_ldconfig) then >+ return; >+ end if; >+ AD.Copy_File (Source_Name => etc_ldconfig, >+ Target_Name => path_to_etc & ldconfig, >+ Form => "mode=copy,preserve=all_attributes"); >+ end copy_ldconfig; >+ >+ > --------------------------- > -- create_etc_services -- > --------------------------- >@@ -1202,6 +1235,8 @@ > create_etc_services (location (slave_base, etc)); > create_etc_shells (location (slave_base, etc)); > create_etc_fstab (location (slave_base, etc)); >+ copy_etc_rcsubr (location (slave_base, etc)); >+ copy_ldconfig (location (slave_base, etc)); > > execute_ldconfig (id); >
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 228540
:
193790
| 193791