#36828: wine-devel: Undefined symbols "_wine_build", referenced from: _wine_get_build_id in config.o --------------------------+-------------------------- Reporter: asipper10@… | Owner: ryandesign@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 2.1.2 Resolution: | Keywords: Port: wine-devel | --------------------------+-------------------------- Comment (by ryandesign@…): Thanks. Several odd results here. The first command should have printed an error; on my system: {{{ $ GIT_DIR=../../.git git describe HEAD; echo $? fatal: Not a git repository: '../../.git' 128 }}} This should print an error, because I am not in a git checkout at the time that I run it. Are you in a git checkout of some project when you run this? Is your home directory or your entire hard disk a git checkout? The third and fourth commands should have printed a line of C code; on my system: {{{ $ echo hello | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p'; echo $? const char wine_build[] = "hello"; 0 }}} Yours printed no output, which is strange. Your sed command is the same size as mine which is a good indication it's the same command as mine. Why does your path have /USR/BIN in capital letters? The directories on disk are in lowercase: /usr/bin. What's your PATH? {{{ echo $PATH }}} On a case-insensitive filesystem, as Macs have by default and as I assume you have, it shouldn't matter if the case is wrong, but all the same it would help us rule out possibilities if you would set the components of your PATH to have the same case as they do on disk. -- Ticket URL: <https://trac.macports.org/ticket/36828#comment:10> MacPorts <http://www.macports.org/> Ports system for Mac OS