diff options
author | fredb <fredb> | 2005-03-20 12:36:25 +0000 |
---|---|---|
committer | fredb <fredb> | 2005-03-20 12:36:25 +0000 |
commit | d3c8bca52f4ba45d6cf10b0d835583bf614523e4 (patch) | |
tree | 0b3fd484d654d3fd03171320a37b2f050767d5f7 /misc | |
parent | d3366c3c6c506a15799f169da546574bc5991756 (diff) | |
download | pkgsrc-d3c8bca52f4ba45d6cf10b0d835583bf614523e4.tar.gz |
Lose one more layer of quoting. "ktrace" showed that the program was
looking for its config file with double-quotes in the path.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/celestia/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/celestia/Makefile.common b/misc/celestia/Makefile.common index dfd6c97a118..6d78d6c37ce 100644 --- a/misc/celestia/Makefile.common +++ b/misc/celestia/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.13 2005/03/18 12:36:42 wiz Exp $ +# $NetBSD: Makefile.common,v 1.14 2005/03/20 12:36:25 fredb Exp $ DISTNAME= celestia-${CELESTIA_VERS} CATEGORIES= misc x11 @@ -22,7 +22,7 @@ CONFIGURE_ARGS+= --with-lua --with-glut GCC_REQD= 3.0 -CXXFLAGS+= -DPKG_SYSCONFDIR="\"${PKG_SYSCONFDIR}\"" +CXXFLAGS+= -DPKG_SYSCONFDIR=\"${PKG_SYSCONFDIR}\" .include "../../mk/bsd.prefs.mk" |