Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: ports/fvwm/build.sh

Issue 1285953002: Switch devenv to use pkg packages (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@toolchain_install
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2014 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2014 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 EXTRA_CONFIGURE_ARGS+=" --with-x" 5 EXTRA_CONFIGURE_ARGS+=" --with-x"
6 EXTRA_CONFIGURE_ARGS+=" --x-includes=${NACLPORTS_INCLUDE}" 6 EXTRA_CONFIGURE_ARGS+=" --x-includes=${NACLPORTS_INCLUDE}"
7 EXTRA_CONFIGURE_ARGS+=" --x-libraries=${NACLPORTS_LIBDIR}" 7 EXTRA_CONFIGURE_ARGS+=" --x-libraries=${NACLPORTS_LIBDIR}"
8 EXTRA_CONFIGURE_ARGS+=" --with-bidi=no" 8 EXTRA_CONFIGURE_ARGS+=" --with-bidi=no"
9 EXTRA_CONFIGURE_ARGS+=" --with-gnome=no" 9 EXTRA_CONFIGURE_ARGS+=" --with-gnome=no"
10 EXTRA_CONFIGURE_ARGS+=" --disable-shm" 10 EXTRA_CONFIGURE_ARGS+=" --disable-shm"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 if [ "${TOOLCHAIN}" = "pnacl" ]; then 56 if [ "${TOOLCHAIN}" = "pnacl" ]; then
57 NACLPORTS_CPPFLAGS+=" -Wno-return-type" 57 NACLPORTS_CPPFLAGS+=" -Wno-return-type"
58 fi 58 fi
59 59
60 InstallStep() { 60 InstallStep() {
61 DefaultInstallStep 61 DefaultInstallStep
62 # Remove dangling symlinks 62 # Remove dangling symlinks
63 Remove ${DESTDIR}${PREFIX}/bin/fvwm2 ${DESTDIR}${PREFIX}/bin/xpmroot 63 Remove ${DESTDIR}${PREFIX}/bin/fvwm2 ${DESTDIR}${PREFIX}/bin/xpmroot
64 } 64 }
65
66 PublishStep() {
67 PublishByArchForDevEnv
68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698