15 lines
407 B
Plaintext
15 lines
407 B
Plaintext
--- util/grub-mkconfig.in.orig 2014-03-03 11:00:26.000000000 -0500
|
|
+++ util/grub-mkconfig.in 2014-07-03 11:31:47.013881961 -0400
|
|
@@ -278,3 +278,11 @@
|
|
|
|
gettext "done" >&2
|
|
echo >&2
|
|
+
|
|
+# If pcbsd-utils are installed, the restamp-grub command will exist
|
|
+# Use it to do the grub-install and copy grub.cfg to other BEs
|
|
+which restamp-grub >/dev/null 2>/dev/null
|
|
+if [ $? -eq 0 ] ; then
|
|
+ restamp-grub
|
|
+fi
|
|
+
|