Skip to content

Commit

Permalink
Don't expand path variables in configure.ac
Browse files Browse the repository at this point in the history
  • Loading branch information
hasufell committed Sep 6, 2013
1 parent 43bb01d commit 3b118af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -72,7 +72,7 @@ AC_ARG_WITH(
[AS_HELP_STRING([--with-icondir=DIR], [path to icon directory (default:
$datadir/pixmaps)])],
[ICONDIR="$withval"],
[ICONDIR="$datadir/pixmaps"]
[ICONDIR='$(datadir)/pixmaps']
)

# Let user specify desktopdir
Expand All @@ -81,7 +81,7 @@ AC_ARG_WITH(
[AS_HELP_STRING([--with-desktopdir=DIR], [path to desktop directory
(default: $datadir/applications)])],
[DESKTOPDIR="$withval"],
[DESKTOPDIR="$datadir/applications"]
[DESKTOPDIR='$(datadir)/applications']
)

AC_SUBST([DESKTOPDIR])
Expand Down

0 comments on commit 3b118af

Please sign in to comment.