[Bug 226137] installworld fails after unsetting WITHOUT_LOCALES=yes

2019-10-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226137

Baptiste Daroussin  changed:

   What|Removed |Added

   Assignee|b...@freebsd.org|b...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 226137] installworld fails after unsetting WITHOUT_LOCALES=yes

2019-10-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226137

--- Comment #3 from Robert Blayzor  ---
Workaround...

mkdir /usr/share/locale


Installworld as normal...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 226137] installworld fails after unsetting WITHOUT_LOCALES=yes

2019-10-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226137

Robert Blayzor  changed:

   What|Removed |Added

 CC||rblay...@inoc.net

--- Comment #2 from Robert Blayzor  ---
I can confirm this bug on RELENG_12...

To reproduce:

- Install system as normal

- Build world and installworld from sources

- make delete-old after installation 

- buildworld again and attempt installworld... you will get this message

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 226137] installworld fails after unsetting WITHOUT_LOCALES=yes

2018-11-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226137

Kubilay Kocak  changed:

   What|Removed |Added

  Component|misc|conf
 CC||ko...@freebsd.org
 Status|New |Open
   Keywords||needs-qa

--- Comment #1 from Kubilay Kocak  ---
@Raphael Is this issue still reproducible?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 226137] installworld fails after unsetting WITHOUT_LOCALES=yes

2018-02-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226137

Bug ID: 226137
   Summary: installworld fails after unsetting WITHOUT_LOCALES=yes
   Product: Base System
   Version: CURRENT
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: rak...@freebsd.org
CC: b...@freebsd.org, bdrew...@freebsd.org

I've recently installed a r329338 snapshot on a VM, then:
* svn up'ed to 329837
* Added WITHOUT_LOCALES=yes to /etc/src.conf and updated the system
* make delete-old removed /usr/share/locale

I noticed that was a bad option, removed WITHOUT_LOCALES=yes, rebuilt world but
make installworld fails:

# make installworld
make[1]: "/usr/obj/usr/src/amd64.amd64/compiler-metadata.mk" line 1: Using
cached compiler metadata from build at bsdmonster on Fri Feb 23 09:45:54 CET
2018
mkdir -p /tmp/install.5XpPiWM0
progs=$(for prog in [ awk cap_mkdb cat chflags chmod chown cmp cp  date echo
egrep find grep id install   ln make mkdir mtree mv pwd_mkdb  rm sed
services_mkdb sh sort strip sysctl test true uname wc zic tzsetup   makewhatis;
do  if progpath=`which $prog`; then  echo $progpath;  else  echo "Required tool
$prog not found in PATH." >&2;  exit 1;  fi;  done);  libs=$(ldd -f "%o %p\n"
-f "%o %p\n" $progs 2>/dev/null | sort -u |  while read line; do  set -- $line;
 if [ "$2 $3" != "not found" ]; then  echo $2;  else  echo "Required library $1
not found." >&2;  exit 1;  fi;  done);  cp $libs $progs /tmp/install.5XpPiWM0
cp -R ${PATH_LOCALE:-"/usr/share/locale"} /tmp/install.5XpPiWM0/locale
cp: /usr/share/locale: No such file or directory
*** Error code 1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"