Browse Source

try harder to find absolute paths

master
Michael van Elst 23 years ago committed by Ralf S. Engelschall
parent
commit
98ccbe42e2
  1. 2
      apache2/apache2.patch
  2. 2
      apache2/apache2.spec

2
apache2/apache2.patch

@ -5,7 +5,7 @@
rm -f $$tmp && touch $$tmp; \
for dir in $(EXPORT_DIRS); do \
- ls $$dir/*.h >> $$tmp; \
+ abs_dir=`cd $$dir && pwd`; \
+ abs_dir=`cd $$dir && exec pwd`; \
+ ls $$abs_dir/*.h >> $$tmp; \
done; \
sort -u $$tmp > $@; \

2
apache2/apache2.spec

@ -33,7 +33,7 @@ Distribution: OpenPKG [EVAL]
Group: Web
License: ASF
Version: 2.0.47
Release: 20030710
Release: 20030711
# list of sources
Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.gz

Loading…
Cancel
Save